FDXParty constructor

FDXParty({
  1. required String name,
  2. required FDXPartyType type,
  3. String? homeUri,
  4. String? logoUri,
  5. FDXPartyRegistry? registry,
  6. String? registeredEntityName,
  7. String? registeredEntityId,
})

Implementation

FDXParty({
  required this.name,
  required this.type,
  this.homeUri,
  this.logoUri,
  this.registry,
  this.registeredEntityName,
  this.registeredEntityId,
});