getClusterId static method

Future<String?> getClusterId()

Implementation

static Future<String?> getClusterId() async {
  try {
    return await keys.getClusterId();
  } catch (ex) {
    Future.error(ex);
  }
}