getApprovedChains method
Will get the list of already approved chains by the wallet (to switch to)
Implementation
@override
List<String>? getApprovedChains({String? namespace}) {
if (_currentSession == null) {
return null;
}
return _currentSession!.getApprovedChains(namespace: namespace);
}