border method
Add border
Implementation
Widget border({
Color color = const Color(0xFF000000),
double width = 1.0,
}) =>
Container(
decoration: BoxDecoration(
border: Border.all(color: color, width: width),
),
child: this,
);