init static method
- RustLibApi? api,
- BaseHandler? handler,
- ExternalLibrary? externalLibrary,
- bool forceSameCodegenVersion = true,
Initialize flutter_rust_bridge
Implementation
static Future<void> init({
final RustLibApi? api,
final BaseHandler? handler,
final ExternalLibrary? externalLibrary,
final bool forceSameCodegenVersion = true,
}) async {
await instance.initImpl(
api: api,
handler: handler,
externalLibrary: externalLibrary,
forceSameCodegenVersion: forceSameCodegenVersion,
);
}