build method
Implementation
@override
Widget build(Rokeet rokeet, RVerticalContainerWidget widget) {
Key key = Key(widget.id!);
List<Row> children = widget.children!
.map((child) => rokeet.buildWidget(child))
.where((element) => element != null)
.map((e) => Row(
children: [e!],
))
.toList(growable: false);
return Column(
key: key,
children: children,
);
}