Corrected variables declaration

This commit is contained in:
Patrick Alvin Alcala 2025-09-22 13:17:38 +08:00
parent cf813e22c1
commit 69b28b1e59
11 changed files with 44 additions and 41 deletions

View file

@ -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();