ApptiveGridAuthenticationOptions constructor

const ApptiveGridAuthenticationOptions({
  1. bool autoAuthenticate = false,
  2. String? redirectScheme,
  3. ApptiveGridApiKey? apiKey,
  4. bool persistCredentials = false,
  5. String authGroup = 'apptivegrid',
})

Creates Authentication Object autoAuthenticate determines if the auth process is started automatically. Defaults to false

Implementation

const ApptiveGridAuthenticationOptions({
  this.autoAuthenticate = false,
  this.redirectScheme,
  this.apiKey,
  this.persistCredentials = false,
  this.authGroup = 'apptivegrid',
});