flutterToNativeModule static method

Future<bool?> flutterToNativeModule(
  1. FCPChannelTypes type, [
  2. dynamic data
])

Implementation

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