hasValue method

  1. @override
bool hasValue()
override

Indicates whether the theme has any value set.

Implementation

@override
bool hasValue() {
  return (_colors != null && _colors!.isNotEmpty) || super.hasValue();
}