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