ApiStatus constructor

const ApiStatus({
  1. int ok = 200,
  2. int created = 201,
  3. int updated = 202,
  4. int deleted = 203,
  5. int canceled = 204,
})

Implementation

const ApiStatus({
  this.ok = 200,
  this.created = 201,
  this.updated = 202,
  this.deleted = 203,
  this.canceled = 204,
});