skip to Main Content

check of myFinal == null don't work in flutter

my Final declaration check if it's null don't work in flutter if (extractedData == null) { return; } Future<void> fetchAndSetOrders() async { const url = 'https://flutter-update.firebaseio.com/orders.json'; final response = await http.get(url); final List<OrderItem> loadedOrders = []; final extractedData = json.decode(response.body)…

VIEW QUESTION
Back To Top
Search