delay300 method

Future<bool> delay300()

Implementation

Future<bool> delay300() async {
  await Future.delayed(const Duration(milliseconds: 60));
  return true;
}