build method
Builds the layout widget tree for the given content item.
This method is called by the content system to render the content item with the specified layout.
Implementation
@override
Widget build(BuildContext context, T content) {
final unknown = Unknown(
missingSchemaType: missingSchemaType,
description:
'This is due to a missing ConditionalLayout with schemaType: $missingSchemaType.');
return VyuhBinding.instance.content.buildContent(context, unknown);
}