Skip to content

Instantly share code, notes, and snippets.

@inanant
Created March 21, 2024 10:27
Show Gist options
  • Save inanant/ca0d6157d0d29d14236f7442349fbf05 to your computer and use it in GitHub Desktop.
Save inanant/ca0d6157d0d29d14236f7442349fbf05 to your computer and use it in GitHub Desktop.
class NativeBridge {
static const MethodChannel _channel = MethodChannel('com.example/native');
static void getNativeData(String name) async {
await _channel.invokeMethod('getNativeData', <String, String>{
"name": name,
}).then((value) => print(value));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment