selectAccount abstract method Null safety

void selectAccount(
  1. AccountSelectionContext context,
  2. AccountSelectionHandler handler
)

The account selection interaction.

The implementing class must ask the user to choose one of the accounts exposed by the AccountSelectionContext and provide the choice to the AccountSelectionHandler.

Params:

  • context: the object containing the list of existing authenticators.
  • handler: the object that must be notified with the selection result.

Implementation

void selectAccount(
  AccountSelectionContext context,
  AccountSelectionHandler handler,
);