dense static method

Widget dense(
  1. Widget child
)

Returns the Padding with the Insets.dense insets.

Implementation

static Widget dense(Widget child) =>
    Padding(padding: Insets.dense, child: child);