withMinSeconds method

Future<T> withMinSeconds(
  1. int seconds
)

确保 Future 至少执行指定秒数

Implementation

Future<T> withMinSeconds(int seconds) =>
    withMinDuration(Duration(seconds: seconds));