build method
Subclasses should override this function to display the given children, which are the parsed representation of data.
Implementation
@override
Widget build(BuildContext context, List<Widget>? children) {
return ListView(
padding: padding,
controller: controller,
physics: physics,
shrinkWrap: shrinkWrap,
children: children!,
);
}