setLoggingEnabled method
- bool enabled
Enables or disables logging.
Implementation
Future<void> setLoggingEnabled(bool enabled) async {
if (Platform.isAndroid) {
// Android does not support logging
return;
}
return _dymatrixApi.setLoggingEnabled(enabled);
}