R<T> constructor

R<T>({
  1. String? msg,
  2. String? code,
  3. bool? haveNext,
  4. RStatus? rStatus,
  5. T? data,
  6. dynamic originalData,
  7. String? time,
  8. Map<String, dynamic>? responseHeader,
})

Implementation

R({
  this.msg,
  this.code,
  this.haveNext,
  this.rStatus,
  this.data,
  this.originalData,
  this.time,
  this.responseHeader,
});