fromNative static method

LocationInfo fromNative(
  1. LocationInfoNative native, {
  2. bool takeOwnership = true,
})

Implementation

static LocationInfo fromNative(LocationInfoNative native, {bool takeOwnership = true})  {
    return LocationInfo(
      native.id,
      native.version,
      toPlatformString(native.name, takeOwnership: takeOwnership),
    );
}