CredentialType constructor

CredentialType({
  1. required String type,
  2. required String id,
  3. required List<String> transports,
})

Constructs a new instance.

Implementation

CredentialType({
  required this.type,
  required this.id,
  required this.transports,
});