toEntity method

  1. @override
ProductImageEntity toEntity({
  1. String? appId,
})
override

Implementation

@override
ProductImageEntity toEntity({String? appId}) {
  return ProductImageEntity(
    imageId: (image != null) ? image!.documentID : null,
  );
}