Border constructor
Border({
- dynamic width,
- dynamic color,
- RoundCorners? roundCorners,
Implementation
Border({dynamic width, dynamic color, RoundCorners? roundCorners}) {
_width = width;
_color = color;
_roundCorners = roundCorners;
}