RetrieveTransferParametersResponse.fromJson constructor

RetrieveTransferParametersResponse.fromJson(
  1. Map _json
)

Implementation

RetrieveTransferParametersResponse.fromJson(core.Map _json)
    : this(
        transferParameters: _json.containsKey('transferParameters')
            ? TransferParameters.fromJson(_json['transferParameters']
                as core.Map<core.String, core.dynamic>)
            : null,
      );