setLogLevel method
override
Sets the logging verbosity level via the method channel.
Sends setLogLevel to the native platform with logLevel
and optional instanceId.
Implementation
@override
Future<void> setLogLevel(String logLevel, {String? instanceId}) async {
await methodChannel.invokeMethod('setLogLevel', {
'logLevel': logLevel,
'instanceId': instanceId,
});
}