fileTypeNotificationSound property

FileTypeNotificationSound? fileTypeNotificationSound

The file is a notification sound

Implementation

FileTypeNotificationSound? get fileTypeNotificationSound {
  if (this is FileTypeNotificationSound) {
    return this as FileTypeNotificationSound;
  }
  return null;
}