Autoscale.fromJson constructor

Autoscale.fromJson(
  1. Map json_
)

Implementation

Autoscale.fromJson(core.Map json_)
    : this(
        currentSlots: json_.containsKey('currentSlots')
            ? json_['currentSlots'] as core.String
            : null,
        maxSlots: json_.containsKey('maxSlots')
            ? json_['maxSlots'] as core.String
            : null,
      );