ReturnPolicyOnlineReturnShippingFee.fromJson constructor
ReturnPolicyOnlineReturnShippingFee.fromJson(
- Map json_
Implementation
ReturnPolicyOnlineReturnShippingFee.fromJson(core.Map json_)
: this(
fixedFee: json_.containsKey('fixedFee')
? PriceAmount.fromJson(
json_['fixedFee'] as core.Map<core.String, core.dynamic>,
)
: null,
type: json_['type'] as core.String?,
);