iconSet property
String?
get
iconSet
Implementation
String? get iconSet => _iconSet ?? _materialIconsExtended;
The set of icons to use. Only allowed value currently is
material-icons-extended
.
Implementation
@Input()
set iconSet(String? value) {
assert(value == null || value == _materialIconsExtended);
_iconSet = value;
}