PayPalAccessToken constructor

PayPalAccessToken({
  1. required String scope,
  2. required String access_token,
  3. required String token_type,
  4. required String app_id,
  5. required Duration expires_in,
  6. required String nonce,
})

Implementation

PayPalAccessToken({
  required this.scope,
  required this.access_token,
  required this.token_type,
  required this.app_id,
  required this.expires_in,
  required this.nonce,
});