PayPayAuth constructor

PayPayAuth({
  1. required String apiKey,
  2. required String apiSecret,
  3. required String merchantId,
})

Implementation

factory PayPayAuth({
  /// API KEY
  required String apiKey,

  /// API SECRET
  required String apiSecret,

  /// used as X-ASSUME-MERCHANT header, set empty if you will not POST
  required String merchantId,
}) = _Auth;