PokepayOAuthClient constructor

PokepayOAuthClient({
  1. APIEnv env = APIEnv.PRODUCTION,
  2. required String clientId,
  3. required String clientSecret,
})

Implementation

PokepayOAuthClient({
  this.env = APIEnv.PRODUCTION,
  required this.clientId,
  required this.clientSecret,
});