SecureFhirClient constructor
SecureFhirClient({})
Implementation
SecureFhirClient({
required super.fhirUri,
this.clientId,
this.redirectUri,
List<String>? scopes,
super.launch,
this.authHeaders,
this.secret,
}) : super(
scopes: ['openid', 'profile', if (scopes != null) ...scopes]
.toSet()
.toList(),
);