AllocateQuotaRequest.fromJson constructor
AllocateQuotaRequest.fromJson(
- Map json_
Implementation
AllocateQuotaRequest.fromJson(core.Map json_)
: this(
allocateOperation: json_.containsKey('allocateOperation')
? QuotaOperation.fromJson(json_['allocateOperation']
as core.Map<core.String, core.dynamic>)
: null,
serviceConfigId: json_.containsKey('serviceConfigId')
? json_['serviceConfigId'] as core.String
: null,
);