refreshRelations static method

Future<ListedItemModel> refreshRelations(
  1. ListedItemModel model
)

Implementation

static Future<ListedItemModel> refreshRelations(ListedItemModel model) async {
  PlatformMediumModel? imageHolder;
  if (model.image != null) {
    try {
      await platformMediumRepository()!
          .get(model.image!.documentID)
          .then((val) {
        imageHolder = val;
      }).catchError((error) {});
    } catch (_) {}
  }

  return model.copyWith(
    image: imageHolder,
  );
}