$DoubleRange.fromJson constructor

$DoubleRange.fromJson(
  1. Map json_
)

Implementation

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