MemoryUsageSample.fromJson constructor

MemoryUsageSample.fromJson(
  1. Map json_
)

Implementation

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