UserAcademicSummary class
Constructors
-
UserAcademicSummary({required int id, required int user, required int semester, required int year, required int term, double? average, double? conduct, double? totalCredits, double? creditsPassed, String? note, double? gpa})
-
const
-
UserAcademicSummary.fromJson(Map<String, dynamic> json, {ValueSerializer? serializer})
-
factory
Methods
-
copyWith({int? id, int? user, int? semester, int? year, int? term, Value<double?> average = const Value.absent(), Value<double?> conduct = const Value.absent(), Value<double?> totalCredits = const Value.absent(), Value<double?> creditsPassed = const Value.absent(), Value<String?> note = const Value.absent(), Value<double?> gpa = const Value.absent()})
→ UserAcademicSummary
-
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson({ValueSerializer? serializer})
→ Map<String, dynamic>
-
Converts this object into a representation that can be encoded with
json. The serializer can be used to configure how individual values
will be encoded. By default, DriftRuntimeOptions.defaultSerializer will
be used. See ValueSerializer.defaults for details.
override
-
toJsonString({ValueSerializer? serializer})
→ String
-
Converts this object into a json representation. The
serializer can be
used to configure how individual values will be encoded. By default,
DriftRuntimeOptions.defaultSerializer will be used. See
ValueSerializer.defaults for details.
inherited
-
toString()
→ String
-
A string representation of this object.
override