MemoryUsageSample.fromJson constructor
MemoryUsageSample.fromJson(
- Map json_
Implementation
MemoryUsageSample.fromJson(core.Map json_)
: this(
utilizedPercentage: json_.containsKey('utilizedPercentage')
? (json_['utilizedPercentage'] as core.num).toDouble()
: null,
);