setDebugLevel method
Set debug level
Implementation
@override
Future<void> setDebugLevel(String level) async {
try {
await methodChannel.invokeMethod('setDebugLevel', {'level': level});
} on PlatformException catch (e) {
throw GrovsException(
e.message ?? 'Failed to set debug level',
code: e.code,
);
}
}