setupMixinConstructor method

void setupMixinConstructor()
inherited

Please call it inside the constructor of your class.

Implementation

void setupMixinConstructor() {
  () async {
    try {
      log('FlutterRustBridgeSetupMixin.setupMixinConstructor start setup');
      await setup();
    } finally {
      log('FlutterRustBridgeSetupMixin.setupMixinConstructor complete setup');
      _setupCompleter.complete();
    }
  }();
}