disconnect method
Implementation
@override
Future<void> disconnect({
required String topic,
required ReownSignError reason,
}) async {
try {
return await engine.disconnectSession(
topic: topic,
reason: reason,
);
} catch (e) {
rethrow;
}
}