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,
    );