seekMusic abstract method

Future<void> seekMusic(
  1. String musicId, {
  2. required int position,
})

Sets the starting position of the music file.

musicId: Music ID.

position: The starting position of the music file in milliseconds. The value must be less than the total length of the music.

Notes:

Implementation

Future<void> seekMusic(
  String musicId, {
  required int position,
});