toNative static method

SegmentNative toNative(
  1. Segment obj
)

Implementation

static SegmentNative toNative(Segment obj)  {
    return _SegmentNativeInit(
      PointImpl.toNative(obj.start),
      PointImpl.toNative(obj.end),
    );
}