AckRecord constructor

AckRecord({
  1. required String acknowledged,
  2. String? acknowledgedAt,
  3. String? note,
  4. String? acknowledgedBy,
  5. Map<String, Object?>? extras,
})

Implementation

AckRecord({
  required this.acknowledged,
  this.acknowledgedAt,
  this.note,
  this.acknowledgedBy,
  Map<String, Object?>? extras,
}) : extras = extras ?? {};