StockholmPropertyInspector constructor

const StockholmPropertyInspector({
  1. StockholmPIHeader? header,
  2. required List<Widget> properties,
  3. double descriptionWidth = defaultDescriptionWidth,
  4. EdgeInsets propertyPadding = defaultPropertyPadding,
  5. Key? key,
})

Implementation

const StockholmPropertyInspector({
  this.header,
  required this.properties,
  this.descriptionWidth = defaultDescriptionWidth,
  this.propertyPadding = defaultPropertyPadding,
  Key? key,
}) : super(key: key);