jumpTo method
Implementation
@override
Future<void> jumpTo(int viewId, double millisecond) async {
try {
var methodChannel = MethodChannel('${channelPrefix}_$viewId');
await methodChannel.invokeMethod<void>('jumpTo', {
'millisecond': millisecond,
});
} on PlatformException catch (e) {
debugPrint('${e.code}: ${e.message}');
}
}