Builder constructor
      
      Builder({ 
    
- required WidgetBuilder builder,
Creates a widget that delegates its build to a callback.
The builder argument must not be null.
Implementation
Builder({
  required this.builder,
}) : super();