licenseStatus property
The license status from a call to ArcGISEnvironment.setLicenseUsingKey.
Implementation
LicenseStatus get licenseStatus {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LicenseResult_getLicenseStatus(
_handle,
errorHandler,
);
});
return LicenseStatus._fromCoreValue(
coreValue,
);
}