seekPlayer static method

Future<Map<Object?, Object?>> seekPlayer(
  1. double percentage
)

Implementation

static Future<Map<Object?, Object?>> seekPlayer(double percentage) async {
  final Map<Object?, Object?> result =
      await _channel.invokeMethod('seekPlayer', {'percentage': percentage});
  return result;
}