fromNative static method

Category fromNative(
  1. CategoryNative native, {
  2. bool takeOwnership = true,
})

Implementation

static Category fromNative(CategoryNative native, {bool takeOwnership = true})  {
    return Category(
      native.id,
      toPlatformString(native.name, takeOwnership: takeOwnership),
      toPlatformFromPointerString(native.imageUrl),
    );
}