* Starts the playback of the current song. * @returns true if the playback was started, otherwise false. Reasons for not starting can be that the player is not ready or already playing. * @category Methods - Player * @since 0.9.4 * * @example * JavaScript * ```js
()
| 1962 | * ``` |
| 1963 | */ |
| 1964 | public play(): boolean { |
| 1965 | return this._player.play(); |
| 1966 | } |
| 1967 | |
| 1968 | /** |
| 1969 | * Pauses the playback of the current song. |