margin method
Implementation
Widget margin([EdgeInsets? margin]) {
return Container(
margin: margin ?? const EdgeInsets.all(8.0),
child: this,
);
}
Widget margin([EdgeInsets? margin]) {
return Container(
margin: margin ?? const EdgeInsets.all(8.0),
child: this,
);
}