CardsControllerV2 constructor

CardsControllerV2({
  1. required ARMOYUServices service,
  2. required CustomCardType title,
  3. required List<APIPlayerPop>? cachedCardList,
  4. dynamic onCardUpdated(
    1. List<APIPlayerPop> updatedCard
    )?,
  5. required bool firstFetch,
})

Implementation

CardsControllerV2({
  required this.service,
  required this.title,
  required this.cachedCardList,
  this.onCardUpdated,
  required this.firstFetch,
});