licenseLevel property
The current license level set in the app. See LicenseLevel for available levels.
By default, unless a deployment license is provided, apps run with a LicenseLevel.developer license.
Implementation
LicenseLevel get licenseLevel {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_License_getLicenseLevel(
_handle,
errorHandler,
);
});
return LicenseLevel._fromCoreValue(
coreValue,
);
}