setDebugLevel method
Set debug level for logging
Controls the verbosity of SDK logs for debugging purposes
level - Debug level: 'info' or 'error'
Throws GrovsException if the operation fails
Example:
await Grovs().setDebugLevel('info');
Implementation
Future<void> setDebugLevel(String level) {
return GrovsPlatform.instance.setDebugLevel(level);
}