ukasz123 / soundpool

Soundpool plugin for Flutter
88 stars 63 forks source link

'Soundpool.new' is deprecated and shouldn't be used. Use fromOptions instead. #136

Open KarthiDreamr opened 4 months ago

KarthiDreamr commented 4 months ago

https://pub.dev/packages/soundpool

change from
Soundpool pool = Soundpool(streamType: StreamType.notification); to

Soundpool pool = Soundpool.fromOptions(
                      options: const SoundpoolOptions(streamType: StreamType.notification)
                  );