name property
The name of the extension license.
This is the name of the extension embedded in the license string.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ExtensionLicense_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}