isPermanent property

bool isPermanent

True if the extension license is permanent, false otherwise.

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

Implementation

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