InputTable constructor

InputTable({
  1. Key? key,
  2. required String name,
  3. required String label,
  4. required InputLookup input,
})

Implementation

InputTable(
    {Key? key, required this.name, required this.label, required this.input})
    : super(key: key);