Breakpoint constructor

const Breakpoint({
  1. required double start,
  2. required double end,
  3. String? name,
  4. dynamic data,
})

Implementation

const Breakpoint(
    {required this.start, required this.end, this.name, this.data});