ConditionalFormat.notContainsText constructor
Highlight cells whose text does not contain value.
Implementation
factory ConditionalFormat.notContainsText(
String value, {
required CellStyle style,
}) => ConditionalFormat._(
typeName: 'notContainsText',
operator: 'notContains',
text: value,
formulas: ['ISERROR(SEARCH("$value",A1))'],
style: style,
);