ReturnShippingFee.fromJson constructor

ReturnShippingFee.fromJson(
  1. Map json_
)

Implementation

ReturnShippingFee.fromJson(core.Map json_)
  : this(
      fixedFee: json_.containsKey('fixedFee')
          ? Price.fromJson(
              json_['fixedFee'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      type: json_['type'] as core.String?,
    );