PayPayClient constructor
PayPayClient({
- required PayPayAuth auth,
- required ApiMode apiMode,
- Code? code,
- Cashback? cashBack,
- Payment? payment,
- User? user,
- Wallet? wallet,
- Client? client,
Implementation
PayPayClient(
{required this.auth,
required this.apiMode,
this.code,
this.cashBack,
this.payment,
this.user,
this.wallet,
Client? client})
: uri = ApiUri.getUri(apiMode),
http = client ?? Client();