LogView constructor

LogView({
  1. String? createTime,
  2. String? description,
  3. String? filter,
  4. String? name,
  5. String? updateTime,
})

Implementation

LogView({
  this.createTime,
  this.description,
  this.filter,
  this.name,
  this.updateTime,
});