fileTypeVideoNote property

FileTypeVideoNote? fileTypeVideoNote

The file is a video note

Implementation

FileTypeVideoNote? get fileTypeVideoNote {
  if (this is FileTypeVideoNote) {
    return this as FileTypeVideoNote;
  }
  return null;
}