1 package com.android.systemui.wallet.controller;
2 
3 import android.service.quickaccesswallet.WalletCard;
4 
5 interface IWalletCardsUpdatedListener {
registerNewWalletCards(in List<WalletCard> cards)6   void registerNewWalletCards(in List<WalletCard> cards);
7 }