TemporaryPasswordState constructor

const TemporaryPasswordState({
  1. required bool hasPassword,
  2. required int validFor,
  3. dynamic extra,
  4. int? clientId,
})

Returns information about the availability of a temporary password, which can be used for payments

Implementation

const TemporaryPasswordState({
  required this.hasPassword,
  required this.validFor,
  this.extra,
  this.clientId,
});