GridView constructor
      
      GridView({})
     
    
    
Implementation
GridView(
    {this.direction = Axis.vertical,
    this.padding = EdgeInsets.zero,
    required this.crossAxisCount,
    this.mainAxisSpacing = 0.0,
    this.crossAxisSpacing = 0.0,
    this.childAspectRatio = double.infinity,
    List<Widget> children = const <Widget>[]})
    : super(children: children);