selectAccount method

Future<void> selectAccount(
  1. String dialogId,
  2. int accountIndex
)

Implementation

Future<void> selectAccount(String dialogId, int accountIndex) async {
  await _client.send('FedCm.selectAccount', {
    'dialogId': dialogId,
    'accountIndex': accountIndex,
  });
}