StockholmPIEditableIntProp constructor

const StockholmPIEditableIntProp({
  1. required String name,
  2. required int value,
  3. required ValueChanged<int>? onChanged,
  4. TextAlign nameAlignment = TextAlign.end,
  5. Key? key,
})

Implementation

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