LogModel constructor

LogModel({
  1. String id = "",
  2. String created = "",
  3. String updated = "",
  4. int level = 0,
  5. String message = "",
  6. Map<String, dynamic> data = const {},
})

Implementation

LogModel({
  this.id = "",
  this.created = "",
  this.updated = "",
  this.level = 0,
  this.message = "",
  this.data = const {},
});