Border constructor Null safety

Border(
  1. {dynamic width,
  2. dynamic color,
  3. RoundCorners? roundCorners}
)

Implementation

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