ResultModel constructor

const ResultModel({
  1. String? resultStatus,
  2. String? result,
  3. String? memo,
  4. String? type,
})

Implementation

const ResultModel({
  this.resultStatus,
  this.result,
  this.memo,
  this.type,
});