IntegerRestrictions.fromJson constructor

IntegerRestrictions.fromJson(
  1. Map json_
)

Implementation

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