showDragAndDropVideosHint property
Indicates whether a drag and drop videos hint should be displayed.
Implementation
bool get showDragAndDropVideosHint =>
_settingsRepository
.applicationSettings
.value
?.showDragAndDropVideosHint ??
true;
Sets the drag and drop videos hint indicator to the provided value
.
Implementation
set showDragAndDropVideosHint(bool value) {
_settingsRepository.setShowDragAndDropVideosHint(value);
}