CpuUsageSample.fromJson constructor

CpuUsageSample.fromJson(
  1. Map json_
)

Implementation

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