yesF method

Future<void> yesF(
  1. Function callback
)

异步

Implementation

Future<void> yesF(Function callback) async {
  if (this) {
    await callback.call();
  }
}