Corrected variables declaration
This commit is contained in:
parent
cf813e22c1
commit
69b28b1e59
11 changed files with 44 additions and 41 deletions
|
|
@ -29,12 +29,13 @@ class _DeleteStockPageState extends State<DeleteStockPage> {
|
|||
final _stocks = Stocks();
|
||||
final _quantityController = TextEditingController();
|
||||
|
||||
late List _stockList = [];
|
||||
late String _selectedStock = '';
|
||||
late bool _aboveQuantity = false;
|
||||
late bool _noStock = false;
|
||||
late double _serverQuantity = 0;
|
||||
late String _selectedUUID = '';
|
||||
bool _aboveQuantity = false;
|
||||
bool _noStock = false;
|
||||
double _serverQuantity = 0;
|
||||
|
||||
late List _stockList;
|
||||
late String _selectedStock;
|
||||
late String _selectedUUID;
|
||||
|
||||
void _getStocks() async {
|
||||
_stockList = await _stocks.getList();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue