AutoscalingLimits.fromJson constructor

AutoscalingLimits.fromJson(
  1. Map json_
)

Implementation

AutoscalingLimits.fromJson(core.Map json_)
    : this(
        maxServeNodes: json_.containsKey('maxServeNodes')
            ? json_['maxServeNodes'] as core.int
            : null,
        minServeNodes: json_.containsKey('minServeNodes')
            ? json_['minServeNodes'] as core.int
            : null,
      );