borderColor property
Color
get
borderColor
Implementation
Color get borderColor {
if (haveBorder) {
return (
widget.borderColor ??
widget.color ??
Theme.of(context).colorScheme.primary
);
}
return Colors.transparent;
}