fromNative static method

Segment fromNative(
  1. SegmentNative native, {
  2. bool takeOwnership = true,
})

Implementation

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