withMargin method
Adds margin to the widget
Implementation
Widget withMargin(EdgeInsetsGeometry margin) {
return Container(
margin: margin,
child: this,
);
}
Adds margin to the widget
Widget withMargin(EdgeInsetsGeometry margin) {
return Container(
margin: margin,
child: this,
);
}