IntegerRestrictions.fromJson constructor

IntegerRestrictions.fromJson(
  1. Map json_
)

Implementation

IntegerRestrictions.fromJson(core.Map json_)
  : this(
      maxValue: json_['maxValue'] as core.String?,
      minValue: json_['minValue'] as core.String?,
    );