fromNative static method

Polyline fromNative(
  1. PolylineNative native, {
  2. bool takeOwnership = true,
})

Implementation

static Polyline fromNative(PolylineNative native, {bool takeOwnership = true})  {
    return Polyline(
      ListPointImpl.fromNativePtr(native.points),
    );
}