GoogleSignInArgs constructor

GoogleSignInArgs({
  1. required String clientId,
  2. required String redirectUri,
  3. String scope = _defaultSignInScope,
  4. bool immediate = false,
  5. String responseType = 'token id_token',
})

Implementation

GoogleSignInArgs({
  required this.clientId,
  required this.redirectUri,
  this.scope = _defaultSignInScope,
  this.immediate = false,
  this.responseType = 'token id_token',
});