fromNative static method

TargetReachedEvent fromNative(
  1. TargetReachedEventNative native, {
  2. bool takeOwnership = true,
})

Implementation

static TargetReachedEvent fromNative(TargetReachedEventNative native, {bool takeOwnership = true})  {
    return TargetReachedEvent(
      native.index,
      LocationPointImpl.fromNative(native.point, takeOwnership: takeOwnership),
    );
}