postMessage<T> method

Future<T?> postMessage<T>({
  1. String? action,
})

Implementation

Future<T?> postMessage<T>({String? action}) async {
  T? res = await methodChannel.invokeMethod<T>(_settingMethodName, action);
  return res;
}