EmployeeStatistics class

Constructors

EmployeeStatistics({required double monthlyProvided, required int monthlyGoal, required double weeklyProvided, required double weeklyGoal, required double dailyProvided, required double dailyGoal, required double monthlyCancelled, required double monthlyScheduled})

Properties

dailyGoal double
getter/setter pair
dailyProvided double
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
monthlyCancelled double
getter/setter pair
monthlyGoal int
getter/setter pair
monthlyProvided double
getter/setter pair
monthlyScheduled double
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
weeklyGoal double
getter/setter pair
weeklyProvided double
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

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

Static Methods

fromJson(dynamic value) EmployeeStatistics
Returns a new EmployeeStatistics instance and imports its values from value if it's a Map, null otherwise.
listFromJson(dynamic json) List<EmployeeStatistics>
mapFromJson(dynamic json) Map<String, EmployeeStatistics>
mapListFromJson(dynamic json) Map<String, List<EmployeeStatistics>>