startPlayback method
Starts playback of the audio stream from the given URL.
Implementation
@override
Future<bool> startPlayback(String url) async {
final result = await methodChannel.invokeMethod<bool>('startPlayback', {
'url': url,
});
return result ?? false;
}