WarningEntry constructor

WarningEntry({
  1. required String message,
  2. DateTime? timestamp,
})

Implementation

WarningEntry({required this.message, DateTime? timestamp})
  : super(timestamp: timestamp ?? DateTime.now(), type: EntryType.warning);