IntRange.fromJson constructor

IntRange.fromJson(
  1. Map json_
)

Implementation

IntRange.fromJson(core.Map json_)
    : this(
        max: json_.containsKey('max') ? json_['max'] as core.String : null,
        min: json_.containsKey('min') ? json_['min'] as core.String : null,
      );