trackBorderColor property Null safety
Color of the track border. Mustn't be null.
Implementation
Color get trackBorderColor => _trackBorderColor;
Implementation
set trackBorderColor(Color value) {
assert(value != null);
if (trackBorderColor == value) {
return;
}
_trackBorderColor = value;
notifyListeners();
}