LoggingConfiguration constructor
LoggingConfiguration({})
Implementation
factory LoggingConfiguration({
$core.bool? enableLocalLogging,
LogLevel? minLogLevel,
$core.bool? includeSourceLocation,
$core.bool? includeDeviceMetadata,
$core.bool? enableRemoteLogging,
}) {
final result = create();
if (enableLocalLogging != null)
result.enableLocalLogging = enableLocalLogging;
if (minLogLevel != null) result.minLogLevel = minLogLevel;
if (includeSourceLocation != null)
result.includeSourceLocation = includeSourceLocation;
if (includeDeviceMetadata != null)
result.includeDeviceMetadata = includeDeviceMetadata;
if (enableRemoteLogging != null)
result.enableRemoteLogging = enableRemoteLogging;
return result;
}