NumberFormWidget constructor

const NumberFormWidget({
  1. Key? key,
  2. required IntegerFormComponent component,
})

Creates a TextFormField to show and edit an integer contained in component

Implementation

const NumberFormWidget({Key? key, required this.component}) : super(key: key);