flutterToNativeModule static method
Implementation
static Future<bool?> flutterToNativeModule(
FCPChannelTypes type, [
dynamic data,
]) async {
final value = await _methodChannel.invokeMethod<bool>(
type.name,
data,
);
return value;
}