ListAccountReturnCarrierResponse.fromJson constructor

ListAccountReturnCarrierResponse.fromJson(
  1. Map json_
)

Implementation

ListAccountReturnCarrierResponse.fromJson(core.Map json_)
    : this(
        accountReturnCarriers: json_.containsKey('accountReturnCarriers')
            ? (json_['accountReturnCarriers'] as core.List)
                .map((value) => AccountReturnCarrier.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );