tintColor property
Allows you to set a color for all visual elements.
Implementation
Color? get tintColor => _tintColor;
Implementation
set tintColor(Color? val) {
_tintColor = val;
_setCustomization({"tintColor": _intFromColor(val)}, this);
}