handleMethodCall method
Implementation
Future<dynamic> handleMethodCall(MethodCall call) async {
if (call.method == 'getInfo') {
return _buildInfo();
}
throw MissingPluginException('No implementation found for ${call.method}');
}
Future<dynamic> handleMethodCall(MethodCall call) async {
if (call.method == 'getInfo') {
return _buildInfo();
}
throw MissingPluginException('No implementation found for ${call.method}');
}