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