AxisCoordinates constructor
Implementation
const AxisCoordinates({
required this.start,
required this.end,
}) : size = end - start,
assert(
end >= start,
'The end coordinate must be bigger or equals than the start coordinate',
);