Data constructor

Data({
  1. bool? success,
  2. String? caseType,
  3. UpdatedRecord? updatedRecord,
  4. String? message,
  5. String? action,
})

Implementation

Data({
  this.success,
  this.caseType,
  this.updatedRecord,
  this.message,
  this.action,
});