margin method

Widget margin([
  1. EdgeInsets? margin
])

Implementation

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