Opening the box
var savedList;
Future initiateHive() async {
///Creating a HiveBox to Store data
savedList = await Hive.openBox('Musicbox');
}
The function to put data to hive
var songFav = SongPlayList()..songInfo = songs[currentIndex].id;
print(songs[currentIndex].id);
savedList.put(songs[currentIndex].id, songFav);
The error is
Another exception was thrown: NoSuchMethodError: The method 'put' was called on null.