PlanListData.fromJson constructor

PlanListData.fromJson(
  1. dynamic json
)

Implementation

PlanListData.fromJson(dynamic json) {
  id = json['id'];
  title = json['title'];
  type = json['type'];
  identifier = json['identifier'];
  trialPeriod = json['trial_period'];
  amount = json['amount'];
  status = json['status'];
  duration = json['duration'];
  description = json['description'];
  isTrail = json['is_trail'];
}