m method

Widget m([
  1. double n = 16.0
])

Wraps the widget in a Container with margin on all sides.

Implementation

Widget m([double n = 16.0]) =>
    Container(margin: EdgeInsets.all(n), child: this);