build static method
Returns the Widgets of this SystemSection.
Implementation
static List<Widget> build() {
return [
const Headline(
headline: 'UnreadCounter',
child: SizedBox(
child: Wrap(
spacing: 4,
runSpacing: 4,
children: [
UnreadCounter(1),
UnreadCounter(10),
UnreadCounter(90),
UnreadCounter(100),
],
),
),
),
];
}