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