ScaleQuestion.fromJson constructor

ScaleQuestion.fromJson(
  1. Map json_
)

Implementation

ScaleQuestion.fromJson(core.Map json_)
  : this(
      high: json_['high'] as core.int?,
      highLabel: json_['highLabel'] as core.String?,
      low: json_['low'] as core.int?,
      lowLabel: json_['lowLabel'] as core.String?,
    );