LogModel constructor

LogModel({
  1. String? id,
  2. String? message,
  3. String? fromDevice,
  4. String? ip,
  5. String? type,
  6. String? title,
  7. String? source,
  8. DateTime? createdAt,
})

Implementation

LogModel({
  this.id,
  this.message,
  this.fromDevice,
  this.ip,
  this.type,
  this.title,
  this.source,
  this.createdAt,
});