DoubleRange.fromJson constructor
DoubleRange.fromJson(
- Map json_
Implementation
DoubleRange.fromJson(core.Map json_)
: this(
max: json_.containsKey('max')
? (json_['max'] as core.num).toDouble()
: null,
min: json_.containsKey('min')
? (json_['min'] as core.num).toDouble()
: null,
);