build method
Implementation
@override
FWidget<T> build() => FColumn(app,
gap: 4,
children: [
for (final e in debugWidget._watchers.entries) ...[
FRow(app,
gap: 8,
children: [
FLabel(app, text: e.key),
FLabel(app, text: ' => '),
FLabel(app, text: '${e.value()}'),
],
),
],
],
);