SmartFhirClient constructor

SmartFhirClient({
  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. bool isDemo = false,
})

Constructor

Implementation

SmartFhirClient({
  required super.fhirUri,
  required super.clientId,
  required super.redirectUri,
  this.customUriScheme,
  super.scopes,
  this.authorizeUrl,
  this.tokenUrl,
  super.launch,
  super.secret,
  this.isDemo = false,
});