build method
Builds the fallback missing-page message.
Implementation
@override
FlintNode build() {
return Container(
props: {
'style': {'padding': '24px', 'font-family': 'system-ui, sans-serif'},
},
children: [Text('Flint page "$component" was not registered.')],
);
}