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