respond method
Implementation
@override
Future<void> respond({
required String topic,
required JsonRpcResponse response,
}) {
try {
return engine.respondSessionRequest(topic: topic, response: response);
} catch (e) {
rethrow;
}
}
@override
Future<void> respond({
required String topic,
required JsonRpcResponse response,
}) {
try {
return engine.respondSessionRequest(topic: topic, response: response);
} catch (e) {
rethrow;
}
}