setGiftList method

void setGiftList(
  1. List<GiftModel> giftList
)

Implementation

void setGiftList(List<GiftModel> giftList) {
  if (giftList.isNotEmpty) {
    GiftStore().giftModelList.clear();
    GiftStore().giftModelList.addAll(giftList);
  }
}