getConflictingAccounts method
Get the user conflicting account object to determine how to resolve the flow.
Implementation
Future<ConflictingAccounts> getConflictingAccounts() async {
final result = await _channel
.invokeMapMethod<String, dynamic>('getConflictingAccounts');
return ConflictingAccounts.fromJson(result ?? {});
}