RetrieveTransferParametersResponse.fromJson constructor
RetrieveTransferParametersResponse.fromJson(
- 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,
);