showDragAndDropVideosHint property

bool get showDragAndDropVideosHint

Indicates whether a drag and drop videos hint should be displayed.

Implementation

bool get showDragAndDropVideosHint =>
    _settingsRepository
        .applicationSettings
        .value
        ?.showDragAndDropVideosHint ??
    true;
set showDragAndDropVideosHint (bool value)

Sets the drag and drop videos hint indicator to the provided value.

Implementation

set showDragAndDropVideosHint(bool value) {
  _settingsRepository.setShowDragAndDropVideosHint(value);
}