Range constructor

const Range({
  1. @Default(null) double? low,
  2. @Default(null) double? high,
})

Implementation

const factory Range({
	@Default(null) double? low,
	@Default(null) double? high,
}) = _Range;