PresentationDefinition constructor
PresentationDefinition({
- String? id,
- required List<
InputDescriptor> inputDescriptors, - String? name,
- String? purpose,
- FormatProperty? format,
- List<
SubmissionRequirement> ? submissionRequirement,
Implementation
PresentationDefinition(
{String? id,
required this.inputDescriptors,
this.name,
this.purpose,
this.format,
this.submissionRequirement})
: id = id ?? Uuid().v4();