GoogleApiDeclaration constructor

const GoogleApiDeclaration(
  1. String name,
  2. String clientId,
  3. String redirectUrl, {
  4. String clientSecret = "native",
  5. String baseUrl = "/",
  6. List<String>? scopes,
})

Implementation

const GoogleApiDeclaration(
  String name,
  this.clientId,
  this.redirectUrl, {
  this.clientSecret = "native",
  String baseUrl: "/",
  this.scopes,
}) : super(name, baseUrl: baseUrl);