PinRequest constructor

PinRequest({
  1. required String pin,
  2. String? oldPin,
  3. int? timestamp,
})

Implementation

PinRequest({
  required this.pin,
  this.oldPin,
  this.timestamp,
});