isPermanent property

bool isPermanent

True if a license is perpetual, false otherwise.

Typically this returns true for apps licensed with a license string with 'none' for the expiration date field.

Implementation

bool get isPermanent {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_License_getIsPermanent(_handle, errorHandler);
  });
}