AboutQuotaBytesByService.fromJson constructor
AboutQuotaBytesByService.fromJson(
- Map json_
Implementation
AboutQuotaBytesByService.fromJson(core.Map json_)
: this(
bytesUsed: json_.containsKey('bytesUsed')
? json_['bytesUsed'] as core.String
: null,
serviceName: json_.containsKey('serviceName')
? json_['serviceName'] as core.String
: null,
);