CellularPlanDTO constructor

const CellularPlanDTO({
  1. DateTime? expiryDate,
  2. double? remainingDataMb,
  3. double? totalDataMb,
})

Implementation

const CellularPlanDTO({
  this.expiryDate,
  this.remainingDataMb,
  this.totalDataMb,
});