StockholmPIOneLineProp constructor

const StockholmPIOneLineProp({
  1. required String name,
  2. required Widget value,
  3. TextAlign nameAlignment = TextAlign.end,
  4. Key? key,
})

Implementation

const StockholmPIOneLineProp({
  required this.name,
  required this.value,
  this.nameAlignment = TextAlign.end,
  Key? key,
}) : super(key: key);