Epa class

A class representing EPA (Estimated Performance Average) statistics for a team, which includes various metrics such as current, recent, mean, and max values.

Constructors

Epa({required double current, required double recent, required double mean, required double max})
Constructs an Epa instance with the specified current, recent, mean, and max values.
Epa.fromJson(Map<String, dynamic> json)
Creates an Epa instance from a JSON Map.
factory

Properties

current double
The current EPA value for the team.
final
hashCode int
The hash code for this object.
no setterinherited
max double
The maximum EPA value achieved by the team.
final
mean double
The average EPA value calculated over a defined period.
final
recent double
The recent EPA value based on the team's recent performance.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Operators

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