Range constructor

const Range({
  1. required int from,
  2. required int to,
})

Implementation

const Range({
  required this.from,
  required this.to,
}) : super(Types.RANGE);