RenewalSettings.fromJson constructor

RenewalSettings.fromJson(
  1. Map json_
)

Implementation

RenewalSettings.fromJson(core.Map json_)
  : this(
      kind: json_['kind'] as core.String?,
      renewalType: json_['renewalType'] as core.String?,
    );