initImpl method

  1. @protected
Future<void> initImpl(
  1. {D? dispatcher}
)

Implementation

@protected
Future<void> initImpl({
  D? dispatcher,
}) async {
  if (__state != null) throw StateError('Should not initialize flutter_rust_bridge twice');
  __state = _EntrypointState(dispatcher: dispatcher ?? createDefaultDispatcher());
}