getApprovedMethods method
List of approved methods by connected wallet
Implementation
@override
List<String>? getApprovedMethods({String? namespace}) {
if (_currentSession == null) {
return null;
}
return _currentSession!.getApprovedMethods(namespace: namespace);
}