StandardSchedulerSettings.fromJson constructor

StandardSchedulerSettings.fromJson(
  1. Map json_
)

Implementation

StandardSchedulerSettings.fromJson(core.Map json_)
    : this(
        maxInstances: json_['maxInstances'] as core.int?,
        minInstances: json_['minInstances'] as core.int?,
        targetCpuUtilization:
            (json_['targetCpuUtilization'] as core.num?)?.toDouble(),
        targetThroughputUtilization:
            (json_['targetThroughputUtilization'] as core.num?)?.toDouble(),
      );