The following snippet is the button by clicking which, a short beep plays:
FlatButton(
onPressed: () => {
final player = new AudioCache();
player.play('note1.wav');
}
child: Text('Click to ding!'),
),
The problem I'm facing is whenever I click this button, although sound plays correctly, I get this error in terminal: flutter: Fatal Error: Callback lookup failed!
I wanna know what it is and what I should do?
I checked the package's issue page but didn't find anything helpful.
Thanks