Skip to content

Commit

Permalink
docs: Pause method comment rectified (#1276)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hitesh0413 authored Sep 25, 2022
1 parent 70a37af commit 4aaee70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ After the URL is set, you can use the following methods to control the player:
Stops the playback but keeps the current position.

```dart
await player.pause(); // will resume where left off
await player.pause();
```

### stop

Stops the playback and also resets the current position.

```dart
await player.stop(); // will resume from beginning
await player.stop();
```

### release
Expand Down

0 comments on commit 4aaee70

Please sign in to comment.