datasetChatShouldShowInlineAttachmentViewer function
bool
datasetChatShouldShowInlineAttachmentViewer(
- String path, {
- DatasetChatInlineAttachmentViewerPredicate? predicate,
Implementation
@visibleForTesting
bool datasetChatShouldShowInlineAttachmentViewer(String path, {DatasetChatInlineAttachmentViewerPredicate? predicate}) {
return _isDataUrl(path) && (predicate?.call(path) ?? true);
}