GcpFhirClient constructor
GcpFhirClient({})
Implementation
GcpFhirClient({
super.redirectUri,
required super.fhirUri,
super.clientId,
super.scopes = const [
'openid',
'profile',
'email',
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/userinfo.profile',
],
super.launch,
}) : _googleSignIn = GoogleSignIn(
scopes: scopes ?? [],
clientId: kIsWeb ? clientId : null,
);