MemoryInfo.fromJson constructor
MemoryInfo.fromJson(
- Map json_
Implementation
MemoryInfo.fromJson(core.Map json_)
: this(
memoryCapInKibibyte: json_.containsKey('memoryCapInKibibyte')
? json_['memoryCapInKibibyte'] as core.String
: null,
memoryTotalInKibibyte: json_.containsKey('memoryTotalInKibibyte')
? json_['memoryTotalInKibibyte'] as core.String
: null,
);