AuthRequest constructor

AuthRequest({
  1. required String client_id,
  2. required String secret,
  3. String grant_type = "client_credentials",
  4. String scope = "*",
})

Implementation

AuthRequest({
  required this.client_id,
  required this.secret,
  this.grant_type = "client_credentials",
  this.scope = "*",
});