ApplicationsMeResponse constructor

const ApplicationsMeResponse({
  1. required String id,
  2. required String name,
  3. required String? icon,
  4. required String? description,
  5. required bool botPublic,
  6. required bool botRequireCodeGrant,
  7. required String verifyKey,
  8. required ApplicationsMeResponseOwner owner,
  9. ApplicationBotResponse? bot,
  10. List<String>? redirectUris,
})

Implementation

const ApplicationsMeResponse({
  required this.id,
  required this.name,
  required this.icon,
  required this.description,
  required this.botPublic,
  required this.botRequireCodeGrant,
  required this.verifyKey,
  required this.owner,
  this.bot,
  this.redirectUris,
});