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