ProcessLoading<T> class

The process is still running, but progress is available.

Inheritance
Annotations
  • @immutable

Constructors

ProcessLoading(double progress)
The process is still running, but progress is available.
const

Properties

hashCode int
The hash code for this object.
no setteroverride
progress double
The progress of the process, between 0 and 1.
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
toString() String
A string representation of this object.
override
whenData<R>(R mapper(T value)) ProcessValue<R>
Tries to map this ProcessValue to another ProcessValue using the provided mapper function.
inherited
whenDataAsync<R>(FutureOr<R> mapper(T value)) Future<ProcessValue<R>>
Tries to map this ProcessValue to another ProcessValue using a an async mapper function.
inherited

Operators

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