Data constructor

Data({
  1. int? status,
})

Implementation

Data({int? status}) {
  this._status = status;
}