WorkStatus class

Constructors

WorkStatus({WorkPhase? phase, required String? jobId, String? message, Map<String, dynamic>? more, String? error, String? errorStack, double? percentComplete, double? completed, double? total})
const
WorkStatus.ready()
const

Properties

completed double?
final
error String?
final
errorStack String?
final
hashCode int
The hash code for this object.
no setterinherited
jobId String?
final
message String?
final
more Map<String, dynamic>?
final
percentComplete double?
final
phase WorkPhase?
final
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited
total double?
final

Methods

copyWith({WorkPhase? phase, String? jobId, String? message, Object? error, String? errorStack, double? completed, double? total, double? percentComplete, Map<String, dynamic>? more}) WorkStatus
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 +(WorkStatus other) WorkStatus
operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromJson(dynamic json) WorkStatus?