Corrected variables declaration
This commit is contained in:
parent
cf813e22c1
commit
69b28b1e59
11 changed files with 44 additions and 41 deletions
|
|
@ -30,12 +30,12 @@ class _AddGenericsPageState extends State<AddGenericsPage> {
|
|||
final _nameController = TextEditingController();
|
||||
final _formKey = GlobalKey<FormState>();
|
||||
|
||||
late bool _isLoading = false;
|
||||
bool _isLoading = false;
|
||||
// late final List _categoryListCache = [];
|
||||
|
||||
late List _categoryList = [];
|
||||
late String _selectedCategory = '';
|
||||
late String _categoryUUID = '';
|
||||
late List _categoryList;
|
||||
late String _selectedCategory;
|
||||
late String _categoryUUID;
|
||||
|
||||
Future<void> _getGenericListCache() async {
|
||||
final genericNameList = await _refGenericNames.getList();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue