isAvailable property

bool get isAvailable

Implementation

static bool get isAvailable {
  try {
    instance;
    return true;
  } on JpegStegoNativeException {
    return false;
  }
}