openUrl method

Future<void> openUrl(
  1. String dialogId,
  2. int accountIndex,
  3. AccountUrlType accountUrlType
)

Implementation

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