handleSetLoggingEnabled method
- MethodCall call
Implementation
void handleSetLoggingEnabled(MethodCall call) {
Map<Object?, Object?> args = call.arguments as Map<Object?, Object?>;
bool loggingEnabled = args['loggingEnabled'] as bool;
set_config(safeJsify({'debug': loggingEnabled}));
}