UserAcademicSummary class

Inheritance

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

Properties

average double?
final
conduct double?
final
creditsPassed double?
final
gpa double?
final
hashCode int
The hash code for this object.
no setteroverride
id int
final
note String?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
semester int
final
term int
final
totalCredits double?
final
user int
final
year int
final

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

Operators

operator ==(Object other) bool
The equality operator.
override