PlayParameters constructor

PlayParameters(
  1. Node _node,
  2. Track track,
  3. Snowflake guildId,
  4. bool replace,
  5. Duration startTime,
  6. Duration? endTime,
  7. Snowflake? requester,
  8. Snowflake? channelId,
)

Create a new play parameters object, it is recommended to create this through Node.play

Implementation

PlayParameters(
    this._node,
    this.track,
    this.guildId,
    this.replace,
    this.startTime,
    this.endTime,
    this.requester,
    this.channelId
);