datasetChatShouldShowInlineAttachmentViewer function

  1. @visibleForTesting
bool datasetChatShouldShowInlineAttachmentViewer(
  1. String path, {
  2. DatasetChatInlineAttachmentViewerPredicate? predicate,
})

Implementation

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