bootTesting static method

  1. @visibleForTesting
void bootTesting(
  1. Future<void> bootTesting(
    1. App
    )
)

Define a closure to be run on boot when test mode is enabled.

Implementation

@visibleForTesting
static void bootTesting(Future<void> Function(App) bootTesting) {
  _bootTesting = bootTesting;
}