fromNative static method
Implementation
static BeaconProximityEntry fromNative(BeaconProximityEntryNative native, {bool takeOwnership = true}) {
return BeaconProximityEntry(
native.major,
native.minor,
toPlatformString(native.uuid, takeOwnership: takeOwnership),
native.rssi,
native.frequency,
native.quality,
toPlatformFromPointerFloat(native.distance),
);
}