ifSync method
Performs a side-effect if this is Sync.
Implementation
@override
@pragma('vm:prefer-inline')
Async<T> ifSync(
@noFutures void Function(Async<T> self, Sync<T> async) noFutures,
) {
return this;
}
Performs a side-effect if this is Sync.
@override
@pragma('vm:prefer-inline')
Async<T> ifSync(
@noFutures void Function(Async<T> self, Sync<T> async) noFutures,
) {
return this;
}