Status constructor

Status({
  1. dynamic status,
  2. String? statusVerbose,
  3. String? body,
  4. String? error,
  5. int? imageId,
})

Implementation

Status({
  this.status,
  this.statusVerbose,
  this.body,
  this.error,
  this.imageId,
});