AccountChangeAuthorizationSettings constructor

const AccountChangeAuthorizationSettings({
  1. required bool confirmed,
  2. required int hash,
  3. bool? encryptedRequestsDisabled,
  4. bool? callRequestsDisabled,
})

Account Change Authorization Settings constructor.

Implementation

const AccountChangeAuthorizationSettings({
  required this.confirmed,
  required this.hash,
  this.encryptedRequestsDisabled,
  this.callRequestsDisabled,
}) : super._();