PinStatusResponse constructor

PinStatusResponse({
  1. required bool hasPin,
  2. String? status,
  3. required bool locked,
  4. required int failedAttempts,
  5. String? lastVerifiedAt,
})

Implementation

PinStatusResponse({
  required this.hasPin,
  this.status,
  required this.locked,
  required this.failedAttempts,
  this.lastVerifiedAt,
});