FoulsModel constructor

FoulsModel({
  1. int? id,
  2. String? reason,
  3. int? orderId,
  4. DateTime? createdAt,
})

Implementation

FoulsModel({
  this.id,
  this.reason,
  this.orderId,
  this.createdAt,
});