AuthCodeDeliveryDetails constructor

const AuthCodeDeliveryDetails({
  1. required DeliveryMedium deliveryMedium,
  2. String? destination,
  3. AuthUserAttributeKey? attributeKey,
})

Details on where a confirmation code has been delivered.

Implementation

const AuthCodeDeliveryDetails({
  required this.deliveryMedium,
  this.destination,
  this.attributeKey,
});