section static method Null safety

Widget section(
  1. dynamic text
)

Implementation

static Widget section(text) => Padding(
      padding: const EdgeInsets.fromLTRB(16, 36, 16, 12),
      child: Text(text),
    );