SecondFactor constructor

SecondFactor({
  1. required String id,
  2. required SecondFactorTypeEnum type,
  3. required SecondFactorAttributes attributes,
  4. required SecondFactorRelationships relationships,
})

Returns a new SecondFactor instance.

Implementation

SecondFactor({
  required this.id,
  required this.type,
  required this.attributes,
  required this.relationships,
});