listGiftCards method

Future<GiftCardResponse> listGiftCards({
  1. required ListGiftCardRequest request,
  2. String? authToken,
})

Lists all gift cards.

You can specify optional filters to retrieve a subset of the gift cards.

Implementation

Future<GiftCardResponse> listGiftCards({
  required ListGiftCardRequest request,
  String? authToken,
}) async {
  return _giftCardService.listGiftCards(request: request, authToken: authToken);
}