how to fix E/flutter (15862): Unhandled Exception: Bad state: No element when push data to firebase in flutter?
问题 i trying to send data to firebase i did every thing this my code my code the modal import 'package:firebase_database/firebase_database.dart'; class Student { String _id; String _name; String _age; String _city; String _department; String _description; Student(this._id, this._name, this._age, this._city, this._department, this._description); Student.map(dynamic obj) { this._id = obj['id']; this._name = obj['name']; this._age = obj['age']; this._city = obj['city']; this._department = obj[