registerGlobalCommands method Null safety
- {required List<
CommandBuilder> commands}
Implementation
Future<void> registerGlobalCommands ({ required List<CommandBuilder> commands }) async {
await ioc.use<Http>().put(
url: "/applications/${_application.id}/commands",
payload: commands.map((command) => command.toJson).toList()
);
}