start method
Start Picture in Picture.
Returns Whether Picture in Picture is started successfully.
Implementation
@override
Future<bool> start() async {
final result = await methodChannel.invokeMethod<bool>('start', null);
return result ?? false;
}