PrepaidPlan.fromJson constructor

PrepaidPlan.fromJson(
  1. Map json_
)

Implementation

PrepaidPlan.fromJson(core.Map json_)
    : this(
        allowExtendAfterTime: json_.containsKey('allowExtendAfterTime')
            ? json_['allowExtendAfterTime'] as core.String
            : null,
      );