Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Veenap/a0a3f1094d6aab35ef2cd0c5b6ca1f58 to your computer and use it in GitHub Desktop.
Save Veenap/a0a3f1094d6aab35ef2cd0c5b6ca1f58 to your computer and use it in GitHub Desktop.
- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
if ([@"getBatteryLevel" isEqualToString:call.method]) {
result(@(99));
} else {
result(FlutterMethodNotImplemented);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment