invokeMethod<T, P> static method
Implementation
static Future<T?> invokeMethod<T, P>(String methodName,
[dynamic param]) async {
await initialize(options: {
'logSeverity': NativeLogsListener.instance.severity,
});
return _channel.invokeMethod<T>(
methodName,
param,
);
}