ReportSection class

Annotations
  • @JsonSerializable()

Constructors

ReportSection({required String id, required String title, required int grantedPoints, required int maxPoints, required String summary, required ReportStatus status})

Properties

grantedPoints int
How many points did this section score
final
hashCode int
The hash code for this object.
no setterinherited
id String
final
maxPoints int
How many points could this section have scored.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status ReportStatus
Is this section considered passing.
final
summary String
Should describe the overall goals in a few lines, followed by descriptions of each issue that resulted in grantedPoints being less than maxPoints (if any).
final
title String
final

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.
inherited

Operators

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

Static Methods

fromJson(Map<String, dynamic> json) ReportSection