AutoscalingLimits.fromJson constructor

AutoscalingLimits.fromJson(
  1. Map json_
)

Implementation

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