StockholmPIListProp constructor

const StockholmPIListProp({
  1. required String name,
  2. required String fallbackText,
  3. List<Widget>? list,
  4. double height = 200.0,
  5. Key? key,
})

Implementation

const StockholmPIListProp({
  required this.name,
  required this.fallbackText,
  this.list,
  this.height = 200.0,
  Key? key,
}) : super(key: key);