PlansModel constructor

PlansModel(
  1. {num? code,
  2. String? status,
  3. String? message,
  4. List<PlanListData>? planListData}
)

Implementation

PlansModel({
    this.code,
    this.status,
    this.message,
    this.planListData,});