InputTable constructor
InputTable({
- Key? key,
- required String name,
- required String label,
- required InputLookup input,
Implementation
InputTable(
{Key? key, required this.name, required this.label, required this.input})
: super(key: key);