delay<R> method

Future<R?> delay<R>([
  1. R block()?
])

Implementation

Future<R?> delay<R>([R block()?]) async {
  return await then(block);
}