OAuthEndPoint constructor

OAuthEndPoint({
  1. required String clientID,
  2. required String clientSecret,
  3. String path = "/oauth/token",
})

Implementation

OAuthEndPoint({
  required this.clientID,
  required this.clientSecret,
  this.path = "/oauth/token",
});