classNameBlacklist property

  1. @override
String? classNameBlacklist

String of space-delimited CSS classes to be blacklisted from being added to the resultant DOM.

All over_react components merge any added classes with this prop and the className prop (see UiComponent.forwardingClassNameBuilder).

Implementation

@override
String? get classNameBlacklist =>
    (props[_$key__classNameBlacklist___$CssClassPropsMixin] ?? null)
        as String?;
  1. @override
void classNameBlacklist=(String? value)

String of space-delimited CSS classes to be blacklisted from being added to the resultant DOM.

All over_react components merge any added classes with this prop and the className prop (see UiComponent.forwardingClassNameBuilder).

Implementation

@override
set classNameBlacklist(String? value) =>
    props[_$key__classNameBlacklist___$CssClassPropsMixin] = value;