Clock class Null safety
Constructors
-
Clock()
-
const
Properties
-
hashCode
→ int
-
The hash code for this object. [...]
read-only, inherited
-
now
→ DateTime
-
The current time.
read-only
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a non-existent method or property is accessed. [...]
inherited
-
sleep([Duration interval = defaultInterval])
→ Future<void>
-
Sleep for the specified time.
-
toString()
→ String
-
Returns a string representation of this object.
inherited
-
waitFor<T>(FutureOr<T> condition(), {dynamic matcher, Duration timeout: defaultTimeout, Duration interval: defaultInterval})
→ Future<T>
-
Waits until
condition
evaluates to a value that matches matcher
or
until timeout
time has passed. If condition
returns a Future, then
uses the value of that Future rather than the value of condition
. [...]