LogTheme constructor
const
LogTheme({})
A theme object which contains styles for all log message types.
Implementation
const LogTheme({
LogStyle? detail,
LogStyle? info,
LogStyle? err,
LogStyle? warn,
LogStyle? alert,
LogStyle? success,
}) : detail = detail ?? _detailStyle,
info = info ?? _infoStyle,
err = err ?? _errStyle,
warn = warn ?? _warnStyle,
alert = alert ?? _alertStyle,
success = success ?? _successStyle;