RenewDomainRequest.fromJson constructor
RenewDomainRequest.fromJson(
- Map json_
Implementation
RenewDomainRequest.fromJson(core.Map json_)
: this(
validateOnly: json_['validateOnly'] as core.bool?,
yearlyPrice:
json_.containsKey('yearlyPrice')
? Money.fromJson(
json_['yearlyPrice'] as core.Map<core.String, core.dynamic>,
)
: null,
);