ResponseOrError constructor

ResponseOrError({
  1. int? requestID,
  2. int? statusCode,
  3. String? reasonPhrase,
  4. String? text,
  5. String? error,
})

Implementation

ResponseOrError({
  this.requestID,
  this.statusCode,
  this.reasonPhrase,
  this.text,
  this.error,
});