fromNative static method
Implementation
static Segment fromNative(SegmentNative native, {bool takeOwnership = true}) {
return Segment(
PointImpl.fromNative(native.start, takeOwnership: takeOwnership),
PointImpl.fromNative(native.end, takeOwnership: takeOwnership),
);
}