MusicBotFramework constructor

MusicBotFramework({
  1. required LavalinkClient lavalinkClient,
  2. String prefix = '!',
  3. bool autoQueue = true,
  4. bool djMode = false,
  5. List<String> djRoles = const [],
})

Implementation

MusicBotFramework({
  required this.lavalinkClient,
  this.prefix = '!',
  this.autoQueue = true,
  this.djMode = false,
  this.djRoles = const [],
}) {
  _registerDefaultCommands();
}