Plans.fromJson constructor

Plans.fromJson(
  1. dynamic json
)

Implementation

Plans.fromJson(dynamic json) {
  _planId = json['planId'];
  _planDuration = json['planDuration'];
  _sandBoxDuration = json['sandBoxDuration'];
}