name property

String name

The name of the attachment.

Implementation

String get name {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Attachment_getName(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}