NormalAuth constructor

NormalAuth({
  1. required String scope,
  2. String state = 'state',
  3. bool nonAutomatic = false,
})

Implementation

NormalAuth(
    {required this.scope, this.state = 'state', this.nonAutomatic = false})
    : assert(scope.trim().isNotEmpty);