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