setDebugMode method
Implementation
@override
Future<void> setDebugMode({required bool enabled}) async {
try {
await methodChannel.invokeMethod<void>('setDebugMode', {
'enabled': enabled,
});
} on PlatformException {
rethrow;
} catch (e) {
throw mapNativeError(e);
}
}