operator == method
Compares two Offsets for equality.
Implementation
@override
bool operator ==(Object other) =>
other is CubicLine &&
start == other.start &&
cpStart == other.cpStart &&
cpEnd == other.cpEnd &&
end == other.end &&
startSize == other.startSize &&
endSize == other.endSize;