Context constructor Null safety

Context(
  1. {required CommandsPlugin commands,
  2. required IGuild? guild,
  3. required ITextChannel channel,
  4. required IMember? member,
  5. required IUser user,
  6. required Command command,
  7. required INyxx client}
)

Construct a new Context

Implementation

Context({
  required this.commands,
  required this.guild,
  required this.channel,
  required this.member,
  required this.user,
  required this.command,
  required this.client,
});