hasPreview static method
Implementation
static bool hasPreview({
required String toolId,
required Map<String, String> previewsById,
required Map<String, String> rawBuffersById,
}) {
if ((previewsById[toolId] ?? '').trim().isNotEmpty) return true;
return (rawBuffersById[toolId] ?? '').trim().isNotEmpty;
}