APIStatus constructor

APIStatus({
  1. String? status,
  2. DateTime? lastUpdatedAt,
  3. DateTime? createdOn,
  4. String? message,
})

Implementation

APIStatus({
  this.status,
  this.lastUpdatedAt,
  this.createdOn,
  this.message,
});