responseExists method

Future<bool> responseExists(
  1. String responseId
)

Check if a response exists and is accessible

Implementation

Future<bool> responseExists(String responseId) async {
  try {
    await getResponse(responseId);
    return true;
  } catch (e) {
    return false;
  }
}