MmNotice constructor

MmNotice({
  1. String? id,
  2. bool? sysAdminOnly,
  3. bool? teamAdminOnly,
  4. String? action,
  5. String? actionParam,
  6. String? actionText,
  7. String? description,
  8. String? image,
  9. String? title,
})

Returns a new MmNotice instance.

Implementation

MmNotice({
  this.id,
  this.sysAdminOnly,
  this.teamAdminOnly,
  this.action,
  this.actionParam,
  this.actionText,
  this.description,
  this.image,
  this.title,
});