updateSession method
Implementation
@override
Future<void> updateSession({
required String topic,
required Map<String, Namespace> namespaces,
}) async {
try {
return await signEngine.updateSession(
topic: topic,
namespaces: namespaces,
);
} catch (e) {
// final error = e as WCError;
rethrow;
}
}