Flutter – Instance member 'mediaItem' can't be accessed using static access
Can't undersand what i'm doing wrong. audio_service library. void initState() { super.initState(); AudioHandler.mediaItem.value((MediaItem? item) { setState(() { _currentMediaItem = item; }); }); } issue: Instance member 'mediaItem' can't be accessed using static access. I can't find anything about this in…