PresentationDefinitionWithOptions constructor
PresentationDefinitionWithOptions({
- required String domain,
- String? challenge,
- required PresentationDefinition presentationDefinition,
Implementation
PresentationDefinitionWithOptions(
{required this.domain,
String? challenge,
required this.presentationDefinition}) {
if (challenge == null) {
this.challenge = Uuid().v4();
} else {
this.challenge = challenge;
}
}