Thresholds.fromJson constructor

Thresholds.fromJson(
  1. Map json_
)

Implementation

Thresholds.fromJson(core.Map json_)
    : this(
        scaleIn: json_['scaleIn'] as core.int?,
        scaleOut: json_['scaleOut'] as core.int?,
      );