WorkerThreadScalingReport.fromJson constructor

WorkerThreadScalingReport.fromJson(
  1. Map json_
)

Implementation

WorkerThreadScalingReport.fromJson(core.Map json_)
    : this(
        currentThreadCount: json_.containsKey('currentThreadCount')
            ? json_['currentThreadCount'] as core.int
            : null,
      );