build method

  1. @override
Widget build(
  1. BuildContext context,
  2. List<Widget>? children
)
override

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!,
  );
}