ULinkLogEntry constructor

ULinkLogEntry({
  1. required String level,
  2. required String tag,
  3. required String message,
  4. required int timestamp,
})

Creates a log entry

Implementation

ULinkLogEntry({
  required this.level,
  required this.tag,
  required this.message,
  required this.timestamp,
});