approveSession method
Implementation
@override
Future<ApproveResponse> approveSession({
required int id,
required Map<String, Namespace> namespaces,
String? relayProtocol,
}) async {
try {
return await signEngine.approveSession(
id: id,
namespaces: namespaces,
relayProtocol: relayProtocol,
);
} catch (e) {
rethrow;
}
}