NyLogEntry constructor

NyLogEntry({
  1. required String message,
  2. String? type,
  3. required DateTime dateTime,
  4. StackTrace? stackTrace,
  5. Map<String, dynamic>? context,
})

Implementation

NyLogEntry({
  required this.message,
  this.type,
  required this.dateTime,
  this.stackTrace,
  this.context,
});