CancelReasonModel constructor Null safety

CancelReasonModel(
  1. {int? reasonId,
  2. int? customerId,
  3. int? orderId,
  4. String? content,
  5. int? zoneId}
)

Implementation

CancelReasonModel({
  this.reasonId,
  this.customerId,
  this.orderId,
  this.content,
  this.zoneId,
});