licenseStatus property

LicenseStatus licenseStatus

The current license status of the provided license.

Implementation

LicenseStatus get licenseStatus {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_License_getLicenseStatus(
      _handle,
      errorHandler,
    );
  });
  return LicenseStatus._fromCoreValue(
    coreValue,
  );
}