DeleteAccount constructor

DeleteAccount({
  1. String? extra,
  2. int? client_id,
  3. string? reason,
  4. string? password,
})

Implementation

DeleteAccount({
  super.extra,
  super.client_id,
  this.reason,
  this.password,
});