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