WorkerThreadScalingReportResponse.fromJson constructor

WorkerThreadScalingReportResponse.fromJson(
  1. Map json_
)

Implementation

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