AccountTtl constructor

const AccountTtl({
  1. required int days,
  2. dynamic extra,
  3. int? clientId,
})

Contains information about the period of inactivity after which the current user's account will automatically be deleted

Implementation

const AccountTtl({
  required this.days,
  this.extra,
  this.clientId,
});