thirdDelayed function

Future<void> thirdDelayed(
  1. FutureOr callOne(),
  2. FutureOr callTwo(),
  3. FutureOr callThree(), [
  4. int t1 = 0,
  5. int t2 = 0,
  6. int t3 = 0,
])

Implementation

Future<void> thirdDelayed(
  final FutureOr<dynamic> Function() callOne,
  final FutureOr<dynamic> Function() callTwo,
  final FutureOr<dynamic> Function() callThree, [
    final int t1 = 0,
    final int t2 = 0,
    final int t3 = 0
  ]
) async {
  await delayed(callOne, t1);
  await delayed(callTwo, t2);
  await delayed(callThree, t3);
}