LoginUrlInfoRequestConfirmation constructor

const LoginUrlInfoRequestConfirmation({
  1. required String url,
  2. required String domain,
  3. required int botUserId,
  4. required bool requestWriteAccess,
  5. dynamic extra,
  6. int? clientId,
})

An authorization confirmation dialog needs to be shown to the user

Implementation

const LoginUrlInfoRequestConfirmation({
  required this.url,
  required this.domain,
  required this.botUserId,
  required this.requestWriteAccess,
  this.extra,
  this.clientId,
});