CustomInfo constructor

CustomInfo({
  1. int? status,
  2. String? data,
})

Implementation

CustomInfo({
  this.status,
  this.data,
});