feedInt16 method
Implementation
@override
Future<int> feedInt16(
FlutterSoundPlayerCallback callback, {
required List<Int16List> data,
}) {
if (_mediaPlayerWeb != null) {
return _mediaPlayerWeb!.feedInt16(data: data);
} else {
throw Exception(
'You must start the player with [startPlayerFromStream()',
);
}
}