EpicFhirClient constructor

EpicFhirClient({
  1. required FhirUri fhirUri,
  2. required String? clientId,
  3. required FhirUri? redirectUri,
  4. String? customUriScheme,
  5. List<String>? scopes,
  6. FhirUri? authorizeUrl,
  7. FhirUri? tokenUrl,
  8. String? launch,
  9. String? secret,
  10. String? contactSerialNumber,
  11. String? dob,
  12. String? encounterDate,
  13. String? patientFirstName,
  14. String? patientLastName,
  15. String? patientMiddleName,
  16. String? sysLogin,
  17. String? userEpicId,
  18. String? userProviderNumber,
})

Implementation

EpicFhirClient({
  required super.fhirUri,
  required super.clientId,
  required super.redirectUri,
  super.customUriScheme,
  super.scopes,
  super.authorizeUrl,
  super.tokenUrl,
  super.launch,
  super.secret,
  this.contactSerialNumber,
  this.dob,
  this.encounterDate,
  this.patientFirstName,
  this.patientLastName,
  this.patientMiddleName,
  this.sysLogin,
  this.userEpicId,
  this.userProviderNumber,
});