SimpleResponse constructor

SimpleResponse({
  1. required int code,
  2. String? msg,
  3. int? data1,
  4. int? data2,
  5. String? data3,
})

Implementation

SimpleResponse({
  required this.code,
  this.msg,
  this.data1,
  this.data2,
  this.data3,
});