CancelledModel constructor

CancelledModel({
  1. required DateTime date,
  2. required String reason,
})

Returns a new CancelledModel instance.

Implementation

CancelledModel({
  required this.date,
  required this.reason,
});