widget method

Widget widget(
  1. BuildContext context
)
override

Implementation

widget(context) => Padding(
      key: key,
      child: child,
      padding: EdgeInsets.only(
        top: top,
        left: left,
        bottom: bottom,
        right: right,
      ),
    );