diff --git a/doc/__404error.html b/doc/__404error.html index 2a6bf641..2c1c3b66 100644 --- a/doc/__404error.html +++ b/doc/__404error.html @@ -30,33 +30,41 @@ -
- -
+
-
-

404: Something's gone wrong :-(

-
-

You've tried to visit a page that doesn't exist. Luckily this site - has other pages.

-

If you were looking for something specific, try searching: +

+

404: Something's gone wrong :-(

+
+

+ You've tried to visit a page that doesn't exist. Luckily this site has + other pages. +

+
+ If you were looking for something specific, try searching: -

-
-
- +
+
+ + - + +
diff --git a/doc/index.html b/doc/index.html index 300964fb..dd5e2aff 100644 --- a/doc/index.html +++ b/doc/index.html @@ -30,67 +30,228 @@ -
- -
+

Tpay

-

Min Android SDKTarget Android SDK

+

Static Badge +Static Badge +Static Badge +Static Badge +License: MIT

About

This plugin allows your app to make payments with Tpay.

-

Usage

-

Get Tpay instance

-
final TpayPlatform tpay = TpayPlatform.instance;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
LibraryVersion
Flutter>=2.5.0
Dart>=2.18
Minimum Android SDK23 (Android 6.0, Marshmallow)
Minimum iOS version12.0
+
+

Warning

+

For this SDK to work you will need client_id and client_secret tokens. You can find in merchant's panel.

+

If you are partner, you can obtain them in your merchant partner account. For detailed +instructions how to do that or how to create such an account +check this site.

+
+
+

Tip

+

To be able to test the SDK properly, +use mock data.

+
+

Install

+

For details on adding SDK to your app check our pub.dev page.

+

Run sample application

+
git clone <github-link> tpay
+cd tpay/example
+flutter run
 
-

UI Module

-

Tpay plugin contains UI module. Users can interact with it to make payments.

-

Setup

-

Android

-

Tpay UI module requires your MainActivity to extend FlutterFragmentActivity and to pass system backpress events.

-
class MainActivity: FlutterFragmentActivity() {  
-    override fun onBackPressed() {  
-        if (TpayBackpressUtil.isModuleVisible) {  
-            TpayBackpressUtil.onBackPressed()  
-        } else {  
-            super.onBackPressed()  
-        }  
-    }  
-}
+

Configuration

+
+

Note

+

In this section we will provide examples for each configuration to the TpayConfiguration class +you will be able to make.

+
+
+

Important

+

Beneath you will find all configurations that are MANDATORY.

+
+

Initialization

+

At first, you have to configure your app to be able to make any requests by providing SDK info about +your merchant account. +Info about client_id and client_secret you will find in your merchant's panel at Integration -> API.

+
MerchantAuthorization(
+  clientId: "YOUR_CLIENT_ID", 
+  clientSecret: "YOUR_CLIENT_SECRET"
+)
+
+

Environment

+

Tpay SDK provides two types of environments you can use in your app:

+
    +
  • TpayEnvironment.sandbox - used only for tests and in stage/dev flavor.
  • +
  • TpayEnvironment.production - used for production flavors.
  • +
+

Payment methods

+

For users to be able to use a specific payment method you have declared it in the configuration.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MethodDescription
BLIKWeb docs
Pbl (Pay-By-Link)Web docs
CardWeb docs
DigitalWalletsGOOGLE_PAY ; APPLE_PAY
InstallmentPaymentsRATY_PEKAO
DeferredPayments (BNPL)PAY_PO
+
PaymentMethods(  
+  methods: [
+    PaymentMethod.card, 
+    PaymentMethod.blik, 
+    PaymentMethod.transfer
+  ],  
+  wallets: [
+    DigitalWallet.applePay, 
+    DigitalWallet.googlePay
+  ],
+  installmentPayments: [
+    InstallmentPayment.ratyPekao,
+    InstallmentPayment.payPo
+  ]
+)
+
+

Card

+

If you decide to enable the credit card payment option, you have to provide SSL certificates.

+
+

Tip

+

You can find SSL public key on you merchant panel at section Integrations -> API -> Cards API.

+
+
+

Tip

+

You can find public key on you merchant panel:

+
    +
  • Acquirer Elavon: Credit card payments -> API
  • +
  • Acquirer Pekao: Integrations -> API -> Cards API
  • +
+
+
CertificatePinningConfiguration(publicKeyHash: "PUBLIC_KEY_HASH")
 
-

IOS

-

When integrating the Tpay payment module into your app, it’s important to ensure that the necessary permissions are correctly set up to ensure a smooth user experience.

-
Privacy - Camera Usage Description
-

The module allows the user to automatically fill the credit card form for secure payment processing. This feature requires you to setup the “Privacy - Camera Usage Description” in your app’s Info.plist file.

-

Integration Steps

+

Google Pay configuration

+

In order to be able to use Google Pay method you have to provide your merchant_id to the SDK.

+
+

Tip

+

Your login name to the merchant panel is your merchant id.

+
+
GooglePayConfiguration(merchantId: "MERCHANT_ID")
+
+

Apple Pay configuration

+

In order to be able to use Apple Pay method you have to provide your merchant_id and country_code to the SDK.

+
+

Important

+

To obtain the merchantIdentifier, follow these steps:

    -
  1. Open your project’s Info.plist file.
  2. -
  3. Add the key-value pair for the “Privacy - Camera Usage Description” permission, explaining the purpose of camera access. Clearly state that the camera is used to facilitate the automatic filling of the credit card form for secure payment processing.
  4. +
  5. Log in to your Apple Developer account.
  6. +
  7. Navigate to the Certificates, Identifiers & Profiles section.
  8. +
  9. Under Identifiers, select Merchant IDs.
  10. +
  11. Click the + button to create a new Merchant ID.
  12. +
  13. Fill in the required information and associate it with your app's Bundle ID.
  14. +
  15. Once created, the merchant identifier can be found in the list of Merchant IDs.
  16. +
  17. For more details, please follow Apple Pay documentation.
-

Example:

-
<key>NSCameraUsageDescription</key>
-<string>We need access to your camera to automatically fill the credit card form for secure payment processing.</string>
+
+
ApplePayConfiguration(merchantIdentifier: "merchant_id", countryCode: "PL")
+
+

Languages

+

Tpay SDK lets you decide what languages will be available in the Tpay's screen and which one of them +will be preferred/default.

+

Right now, SDK allows you to use 2 languages:

+
    +
  • Language.pl - polish
  • +
  • Language.en - english
  • +
+
Languages(preferredLanguage: Language.pl, supportedLanguages: [Language.pl, Language.en])
+
+

Merchant details

+

As a merchant, you can configure how information about you will be shown. +You can set up your display name, city/headquarters and regulations link. +You can choose to provide different copy for each language, or simply use one for all.

+
MerchantDetails(
+  merchantDisplayName: [
+    LocalizedString(language: Language.pl, value: "polish name"),
+    LocalizedString(language: Language.en, value: "english name"),
+  ],
+  merchantHeadquarters: [
+    LocalizedString(language: Language.pl, value: "polish city name"),
+    LocalizedString(language: Language.en, value: "english city name"),
+  ],
+  regulations: [
+    LocalizedString(language: Language.pl, value: "polish regulation URL"),
+    LocalizedString(language: Language.en, value: "english regulation URL"),
+  ],
+),
 
-

Configure Tpay module

-

This configuration allows your app to use Tpay UI module and screenless payments.

+

Summary

+

Beneath you will find how a complete configuration should look like.

final configuration = TpayConfiguration(  
   merchant: Merchant(
     authorization: MerchantAuthorization(
       clientId: "YOUR_CLIENT_ID", 
       clientSecret: "YOUR_CLIENT_SECRET"
     ),
-    environment: TpayEnvironment.production,
+    environment: TpayEnvironment.sandbox,
     certificatePinningConfiguration: CertificatePinningConfiguration(publicKeyHash: "PUBLIC_KEY_HASH"),
     blikAliasToRegister: "BLIK alias",
     walletConfiguration: WalletConfiguration(
@@ -108,8 +269,8 @@ 

Configure Tpay module

LocalizedString(language: Language.en, value: "english city name") ], regulations: [ - LocalizedString(language: Language.pl, value: "polish regulation url"), - LocalizedString(language: Language.en, value: "english regulation url") + LocalizedString(language: Language.pl, value: "polish regulation URL"), + LocalizedString(language: Language.en, value: "english regulation URL") ], ), languages: Languages( @@ -126,22 +287,128 @@

Configure Tpay module

DigitalWallet.applePay, DigitalWallet.googlePay ], - installmentPayments: [InstallmentPayment.ratyPekao, InstallmentPayment.payPo] + installmentPayments: [ + InstallmentPayment.ratyPekao, + InstallmentPayment.payPo + ] ), ); tpay.configure(configuration);
-

Payment with Tpay UI

+

Android

+

Tpay UI module requires your MainActivity to extend FlutterFragmentActivity and to pass system backpress events.

+
class MainActivity: FlutterFragmentActivity() {
+    override fun onBackPressed() {
+        if (TpayBackpressUtil.isModuleVisible) {
+            TpayBackpressUtil.onBackPressed()
+        } else {
+            super.onBackPressed()
+        }
+    }
+}
+
+

Proguard/R8

+

If you are using Proguard/R8 in your project, you have to add the following rules to the +android/app/proguard-rules.pro file, to keep Tpay SDK classes.

+
# Keep all Tpay sdk classes
+-keep class com.tpay.sdk.** { *; }
+
+

IOS

+

When integrating the Tpay payment module into your app, it’s important to ensure that the necessary permissions are correctly set up to ensure a smooth user experience. +The module allows the user to automatically fill the credit card form for secure payment processing. This feature requires you to setup the “Privacy - Camera Usage Description” in your app’s Info.plist file.

+

Integration Steps:

+
    +
  1. Open your project’s Info.plist file.
  2. +
  3. Add the key-value pair for the “Privacy - Camera Usage Description” permission, explaining the purpose of camera access. Clearly state that the camera is used to facilitate the automatic filling of the credit card form for secure payment processing.
  4. +
+

Example:

+
<key>NSCameraUsageDescription</key>
+<string>We need access to your camera to automatically fill the credit card form for secure payment processing.</string>
+
+

Handling payments

+

Tpay SDK provides two ways of handling payments:

+
    +
  • Official SDK screens - you can use Tpay's official screens where you just need to provide "soft" +information, like price, description or payer info.
  • +
  • Screenless - you can use screenless functionalities, where you set callbacks for payments and +display all necessary information on your own screens.
  • +
+

Official SDK screens

+

To make integration with the SDK faster, we created 3 types of sheets that can be used to handle +payments:

+
    +
  • SingleTransaction - the most simple screen where the user can choose any payment method and proceed with it,
  • +
  • Tokenization - screen that handles generating payment token from the credit card,
  • +
  • TokenPayment - screen that handles payment with previously created token for credit card,
  • +
+

SingleTransaction

+

SingleTransaction flow opens a UI module and allows the customer to pick one of teh defined payment methods. +This method requires setting up a few things in order to fulfill payment:

+
    +
  • amount - simply the price of the transaction
  • +
  • description - transaction description
  • +
  • hiddenDescription (optional) - description visible only to the merchant
  • +
  • payerContext - information about payer +
      +
    • payer - information about the person who is making the payment +
        +
      • name - payer name
      • +
      • email - payer email
      • +
      • phone - payer phone number
      • +
      • address - payer address +
          +
        • city - city name
        • +
        • countryCode - country code in ISO 3166-1 alpha-2 format
        • +
        • address - street address
        • +
        • postalCode - postal code
        • +
        +
      • +
      +
    • +
    • automaticPaymentMethods - configuration of automatic payments +
        +
      • tokenizedCards - previously saved credit cards +
          +
        • token - card token
        • +
        • cardTails - last 4 digits of the card
        • +
        • brand - card brand
        • +
        +
      • +
      • blikAlias - previously saved BLIK alias +
          +
        • value - alias value
        • +
        • label - alias label
        • +
        +
      • +
      +
    • +
    +
  • +
  • notifications - info about where the merchant should be notified about new transactions +
      +
    • notificationEmail - email address to send notification to
    • +
    • notificationUrl - URL to send notification to / URL to send tokens for tokenization
    • +
    +
  • +
  • activity - activity to associate the view with
  • +
  • supportFragmentManager - fragment manager to associate the view with
  • +
final transaction = SingleTransaction(  
   amount: 19.99,  
-  description: "transaction description",  
+  description: "transaction description", 
+  hiddenDescription: "Hidden message",
   payerContext: PayerContext(  
     payer: Payer(  
       name: "John Doe",  
-      email: "example@example.com",  
-      phone: null,  
-      address: null  
+      email: "example@example.com",
+      phone: "123487123",
+      address: PayerAddress(
+        address: "Test Street 1",
+        city: "Warsaw",
+        countryCode: "PL",
+        postalCode: "00-007",
+      ),
     ),
     automaticPaymentMethods: AutomaticPaymentMethods(  
       tokenizedCards: [  
@@ -157,8 +424,9 @@ 

Payment with Tpay UI

) ], blikAlias: BlikAlias(isRegistered: true, value: "alias value", label: "label") - ) - ) + ) + ), + notifications: Notifications(url: "https://yourstore.com", email: "payments@yourstore.com") ); tpay.startPayment( @@ -166,71 +434,233 @@

Payment with Tpay UI

onPaymentCreated: (transactionId) { // The onPaymentCreated optional parameter is a callback function // that is triggered when a payment is successfully created. - // It could receives the transactionId as an argument, allowing you to handle the event. + // It receives the transactionId as an argument, allowing you to handle the event. }, );
-

Credit card tokenization

-
final payer = Payer(  
-  name: "John Doe",  
-  email: "example@example.com",  
-  phone: null,  
-  address: null  
+
+

Important

+

Tpay SDK also supports NFC and camera card scanning:

+
    +
  • NFC - Adding card info during transaction, user can tap on the NFC button. +Then, if NFC is enabled in device, after holding physical card near the device, SDK will scan +the card's data and automatically fill the form with it.
  • +
  • Camera - Adding card info during transaction, user can tap on the camera button. +Then, if the camera scans card data successfully, form will be filled automatically.
  • +
+
+

Automatic Payments

+

Using SingleTransaction screen you can set up automatic BLIK or card payments. +Thanks to that, user will not have to enter BLIK/card data all over again each time making the +payment.

+

If user using a card as a payment method will opt-in saving card, on successful payment, on the link +specified as Notifications -> url Tpay backend will send information about the saved card token, tail and +brand. +Next, your backend has to send it to you, so you can use this info next time the same user will want +to pay with the card. +When you already have all required information, you can add automaticPaymentMethods to the payerContext.

+
AutomaticPaymentMethods(  
+  tokenizedCards: [  
+    TokenizedCard(
+      token: "card_token", 
+      cardTail: "1234", 
+      brand: CreditCardBrand.mastercard
+    ), 
+    TokenizedCard(
+      token: "card_token", 
+      cardTail: "4321", 
+      brand: CreditCardBrand.visa
+    )  
+  ],
+  blikAlias: null
+)
+
+

Tokenization

+

Tpay SDK allows you to make credit card transactions without need of entering card's data each time. +Instead, you can create and use a token, associated with a specific card and user.

+
+

Important

+

There are 2 types of tokens you can use in transactions.

+
    +
  • Simple tokens - +tokens that go with card data upon transaction,
  • +
  • Network tokens - +tokens that can be used without exposing the card details. Also, this token persists even if +card expires and the user requests a new one.
  • +
+
+
+

Warning

+

For recurring payments, you can simply use created token to make transaction without need of user +interaction.

+
+

Creating card token

+
+

Warning

+

notificationUrl should be the URL handled by your backend, because there will be sent token from +the successful token creation.

+
+
final payer = Payer(
+  name: "John Doe",
+  email: "example@example.com",
+  phone: "123487123",
+  address: PayerAddress(
+    address: "Test Street 1",
+    city: "Warsaw",
+    countryCode: "PL",
+    postalCode: "00-007",
+  ),
 );  
 
 tpay.tokenizeCard(Tokenization(payer: payer, notificationUrl: "https://yourstore.com/notifications"));
 
-

Credit card token payment

+

Token payment

+

If you already have card token payment, you can simply proceed with an actual tokenization +transaction.

+
+

Warning

+

cardToken is a token sent to your backend during card tokenization process.

+
final tokenPayment = TokenPayment(  
-  amount: 19.99,  
+  amount: 5.21,  
   description: "transaction description",  
-  cardToken: "card token",  
-  payer: Payer(  
-    name: "John Doe",  
-    email: "example@example.com",  
-    phone: null,  
-    address: null  
+  cardToken: "card_token",  
+  payer: Payer(
+    name: "John Doe",
+    email: "example@example.com",
+    phone: "123487123",
+    address: PayerAddress(
+      address: "Test Street 1",
+      city: "Warsaw",
+      countryCode: "PL",
+      postalCode: "00-007",
+    ),
   ),  
 );  
 
 tpay.startCardTokenPayment(tokenPayment);
 
-

Tpay UI module result handling

-
void handleResult(Result result){  
-  if (result is PaymentCompleted) {  
-    // payment completed successfully and Tpay module was closed  
-  }  
-  if (result is PaymentCancelled) {  
-    // payment failed and Tpay module was closed  
-  }  
-  if (result is TokenizationCompleted) {  
-    // tokenization was successful and Tpay module was closed  
-  }  
-  if (result is TokenizationFailure) {  
-    // tokenization failed and Tpay module was closed  
-  }  
-  if (result is ConfigurationSuccess) {  
-    // Tpay module configuration was successful  
-  }  
-  if (result is ValidationError) {  
-    // passed data is incorrect  
-  }  
-  if (result is ModuleClosed) {  
-    // user closed the Tpay module  
+

Common

+

Each transaction with a predefined screen returns a result +that you can use to either show information to the user or, e.g. log errors.

+
void handleResult(Result result) {
+  switch (result) {
+    case PaymentCompleted():
+    // payment completed successfully and Tpay module was closed
+      break;
+    case PaymentCancelled():
+    // payment failed and Tpay module was closed
+      break;
+    case TokenizationCompleted():
+    // tokenization was successful and Tpay module was closed
+      break;
+    case TokenizationFailure():
+    // tokenization failed and Tpay module was closed
+      break;
+    case ConfigurationSuccess():
+    // Tpay module configuration was successful
+      break;
+    case ValidationError():
+    // passed data is incorrect
+      break;
+    case ModuleClosed():
+    // user closed the Tpay module
     // without making a payment or tokenization
+      break;
+    case MethodCallError():
+    // something went wrong with the plugin
+      break;
+    default:
+      break;
   }
-  if (result is MethodCallError) {  
-    // something went wrong with the plugin  
-  }  
 }
 
-

Screenless payments

-

Tpay plugin allows for creating payments without displaying the Tpay UI module.

-

Screenless BLIK payment

-

User can pay with 6 digit BLIK code or alias (returning users only).

-
final payment = BLIKPayment(
-  code: "123456",  
-  alias: BlikAlias(isRegistered: true, value: "alias value", label: "label"),  
+

Screenless Payments

+

Screenless payments are a special type of payment functionality that gives you the whole power of +payment process, but do not limit you to using predefined Tpay screens.

+

Get payment channels

+

To be able to use screenless functionalities you will need to know which payment methods are +available to your merchant account. To get them, you can simply call getAvailablePaymentChannels +method on the TpayPlatform.instance and set up result observer for them.

+
+

Warning

+

Available methods needs to be filtered by the amount of the transaction, because some payment +methods have specific constraints, like minimum or maximum amount.

+
+
void _getPaymentChannels() async {
+  final result = await tpay.getAvailablePaymentChannels();
+  
+  switch (result) {
+    case PaymentChannelsSuccess():
+      for (var channel in result.channels) {
+        for (var constraint in channel.constraints.whereType<AmountPaymentConstraint>()) {
+          // filter payment methods by the transaction amount
+        }
+      }
+    case PaymentChannelsError():
+      // handle error
+      break;
+  }
+}
+
+

Configuration

+

Before you run any screenless payment we do recommend setting up function to handle specific payment results. +You will need this to be able to monitor each payment status, i.e. it's status in real time. To do so, +create a function, that will accept ScreenlessResult as a parameter and handle each of them.

+
+

Warning

+

Note that long polling mechanism will start only when it's needed:

+
    +
  • ScreenlessPaymentCreated: when payment is created and you have to display payment URL.
  • +
  • ScreenlessBlikAmbiguousAlias: when payment is created and there are more than one BLIK alias registered, +so you have to display them to the user and continue payment with selected one.
  • +
+
+
void handleScreenlessResult(ScreenlessResult result) {
+  switch (result) {
+    case ScreenlessPaid():
+    // payment completed successfully
+      break;
+    case ScreenlessPaymentCreated():
+    // payment created, use result.paymentUrl to redirect the user to the payment page
+      break;
+    case ScreenlessPaymentError():
+    // creating payment failed
+      break;
+    case ScreenlessConfiguredPaymentFailed():
+    // creating payment failed because of error with:
+    // - credit card data or credit card token
+    // - BLIK code or BLIK alias
+      break;
+    case ScreenlessBlikAmbiguousAlias():
+    // single alias has been registered multiple times, use result.aliases to let user choose desired one
+      break;
+    case ScreenlessValidationError():
+    // passed data is incorrect
+      break;
+    case ScreenlessMethodCallError():
+    // something went wrong with the plugin
+      break;
+    default:
+      break;
+  }
+}
+
+

Screenless Credit Card Payment

+

CreditCardPayment allows you to create payments with credit card data.

+
final payment = CreditCardPayment(  
+  creditCard: CreditCard(  
+    cardNumber: "card number",
+    expiryDate: ExpirationDate(
+      month: "12",
+      year: "24"
+    ),  
+    cvv: "123",  
+    config: CreditCardConfig(
+      shouldSave: false,  
+      domain: "yourstore.com"  
+    )  
+  ),
   paymentDetails: PaymentDetails(  
     amount: 19.99,  
     description: "transaction description",  
@@ -254,26 +684,242 @@ 

Screenless BLIK payment

) ) ); + +tpay.screenlessCreditCardPayment(payment); +
+
+

Warning

+

If CreditCardPayment returns ScreenlessPaymentCreated result, you have to handle paymentUrl +sent with it and redirect user to it in order to complete the payment.

+
+

Tokenization

+

You can also Opt-in to generate credit card token for future payments +if you want to let user pay for transactions with previously used card. +To do so, in creditCard -> config object, set the shouldSave to true.

+
creditCard: CreditCard(
+    cardNumber: "4056 2178 4359 7258",
+    expiryDate: ExpirationDate(
+        month: "12",
+        year: "67"
+    ),
+    cvv: "123",
+    config: CreditCardConfig(
+        shouldSave: true,
+        domain: "testdomain.com"
+    )
+),
+
+
+

Warning

+

Generated card token will be sent to notificationUrl specified in the notifications callbacks.

+
+

If you already have a credit card token, you can then set up token payment omitting credit card +info. +To do so, use creditCardToken instead of creditCard field.

+
final payment = CreditCardPayment(
+  creditCardToken: "card_token",
+  paymentDetails: PaymentDetails(  
+    amount: 19.99,  
+    description: "transaction description",  
+    hiddenDescription: "hidden description",  
+    language: Language.pl  
+  ),  
+  payer: Payer(  
+    name: "John Doe",  
+    email: "example@example.com",  
+    phone: null,  
+    address: null  
+  ),  
+  callbacks: Callbacks(  
+    redirects: Redirects(  
+      successUrl: "https://yourstore.com/success",  
+      errorUrl: "https://yourstore.com/error",  
+    ),  
+    notifications: Notifications(  
+      url: "https://yourstore.com",  
+      email: "payments@yourstore.com"  
+    )  
+  )  
+);  
+   
+tpay.screenlessCreditCardPayment(payment);
+
+

Recurring Payments

+

CreditCardPayment let's you set up the recurring payments as well, so you don't have to remember +to charge your customer for your service periodically.

+
+

Important

+

You can choose one of the specified recurring payment frequencies: +daily, weekly, monthly,quarterly or yearly.

+
+
+

Important

+

You can choose to either charge user specified times using quantity (int) option, +or to set it up to being charged until expiration date is being hit or user cancels subscription +on his own with quantity: null.

+
+
final payment = CreditCardPayment(
+  creditCardToken: "card_token", 
+  recursive: Recursive(
+    frequency: Frequency.monthly,
+    quantity: 19,
+    endDate: "1410-07-17"
+  ),
+  paymentDetails: PaymentDetails(  
+    amount: 19.99,  
+    description: "transaction description",  
+    hiddenDescription: "hidden description",  
+    language: Language.pl  
+  ),  
+  payer: Payer(  
+    name: "John Doe",  
+    email: "example@example.com",  
+    phone: null,  
+    address: null  
+  ),  
+  callbacks: Callbacks(  
+    redirects: Redirects(  
+      successUrl: "https://yourstore.com/success",  
+      errorUrl: "https://yourstore.com/error",  
+    ),  
+    notifications: Notifications(  
+      url: "https://yourstore.com",  
+      email: "payments@yourstore.com"  
+    )  
+  )  
+);  
+   
+tpay.screenlessCreditCardPayment(payment);
+
+

Screenless BLIK payment

+

Tpay SDK let's make transactions with BLIK as well. Simply use BLIKPayment class.

+
final result = BLIKPayment(
+  code: "777462",  
+  paymentDetails: PaymentDetails(
+    amount: 5.21,  
+    description: "transaction description",  
+    hiddenDescription: "hidden description",  
+    language: Language.pl  
+  ),  
+  payer: Payer(  
+    name: "John Doe",  
+    email: "john.doe@test.pl",  
+    phone: "123456789",  
+    address: PayerAddress(
+        address: "TEST",
+        city: "TEST",
+        countryCode: "PL",
+        postalCode: "60-111"
+    )
+  ),  
+  callbacks: Callbacks(  
+    redirects: Redirects(  
+      successUrl: "https://yourstore.com/success",  
+      errorUrl: "https://yourstore.com/error",  
+    ),  
+    notifications: Notifications(  
+      url: "https://yourstore.com",  
+      email: "payments@yourstore.com"  
+    )  
+  )  
+);  
   
-tpay.screenlessBLIKPayment(payment);
+tpay.screenlessBLIKPayment(result);
 
-

Screenless Ambiguous BLIK payment

-

screenlessBLIKPayment(...) method can return a ScreenlessBlikAmbiguousAlias result, -this means that user has BLIK alias registered in more than one bank. -You need to display ambiguous aliases provided in ScreenlessBlikAmbiguousAlias result to the user. -After that, you need to continue the payment with ambiguous alias selected by user using screenlessAmbiguousBLIKPayment(...) method.

+

BLIK Alias Payment

+

If you have for example a returning users and you want to make their payments with BLIK even +smoother, +you can register BLIK Alias for them, so they will only be prompted to accept payment in their +banking app, +without need of entering BLIK code each time they want to make the payment.

+
+

Warning

+

In order to register alias for a user/payment, you have to set isRegistered parameter to false. +Then, a successful payment will register the alias in Tpay system +and next time user will be able to use it.

+
+
final result = BLIKPayment(
+  code: "777462",  
+  alias: BlikAlias(
+      isRegistered: false,
+      value: "1234",
+      label: "alias_1234"
+  ),
+  // rest of the BLIKPayment configuration
+);
+
+

If the payment were successful, you can assume an alias was created and can be used for the future +payments.

+
+

Warning

+

If you already have registered alias for a user, you can set up isRegistered parameter to true.

+
+
+

Warning

+

To be able to pay with BLIK alias, you MUST set the code parameter to null.

+
+
final result = BLIKPayment(
+  alias: BlikAlias(
+      isRegistered: true,
+      value: "1234",
+      label: "alias_1234"
+  ),
+  // rest of the BLIKPayment configuration
+);
+
+

BLIK Ambiguous Alias Payment

+

Sometimes, there is a possibility for one alias to be registered more than once. For example, if +you register alias associated with one user for the multiple banks. +In such a situation, you have to fetch those aliases from Tpay API and show them to the user to let him +choose one for the payment.

+

In BLIKPayment's call in execute method you can get ScreenlessBlikAmbiguousAlias +type of result, +that will indicate that current alias was registered more than once. +This result hold all possible variations of the alias you used to start payment with in aliases +field. +You have to simply show them to user, let him choose, and then use chosen alias to retry the +payment.

+
if (result is ScreenlessBlikAmbiguousAlias) {
+  showAmbiguousAliases(result.aliases);
+}
+
+
+

Warning

+

In such scenario, you have to use different class to make the payment than at the beginning.

final payment = AmbiguousBLIKPayment(
-  transactionId: "id", // received from ScreenlessBlikAmbiguousAlias result
-  blikAlias: BlikAlias(...), // BLIK alias used to create payment with screenlessBLIKPayment(...) method
-  ambiguousAlias: AmbiguousAlias(...) // ambiguous alias selected by user
+transactionId: "transaction_id",
+blikAlias: BlikAlias(
+isRegistered: true,
+value: "1234",
+label: "alias_1234",
+),
+ambiguousAlias: AmbiguousAlias(
+name: chosenAlias.name,
+code: chosenAlias.code,
+)
 );
 
 tpay.screenlessAmbiguousBLIKPayment(payment);
 
-

Screenless transfer payment

-

Transfer payment requires a channelId of bank in Tpay system.

+
+
+

Important

+

Right now, Tpay SDK does NOT support recurring payments with BLIK +In order to achieve that, check +our API support for BLIK recurring payments.

+
+

Screenless Transfer Payment

+

Tpay SDK allows you to make transfer payments with bank available to your merchant account.

+
+

Tip

+

To get banks with their channel ids check +the Get Payment Channels +section.

+
+

After your customer chooses their bank from the list, you can use it's channelId to make the payment.

final payment = TransferPayment(  
-  channelId: 4,  
+  channelId: 4,
+  bankName: "bank_name",
   paymentDetails: PaymentDetails(  
     amount: 19.99,  
     description: "transaction description",  
@@ -300,8 +946,13 @@ 

Screenless transfer payment

tpay.screenlessTransferPayment(payment);
-

Screenless Raty Pekao payment

-

Raty Pekao payment requires a channelId of Raty Pekao variant.

+
+

Warning

+

If TransferPayment returns ScreenlessPaymentCreated result, you have to handle paymentUrl +sent with it and redirect user to it in order to complete the payment.

+
+

Screenless Installment Payments

+

Tpay SDK allows you to create long term installment payments.

final payment = RatyPekaoPayment(
   channelId: 81,
   paymentDetails: PaymentDetails(
@@ -330,7 +981,23 @@ 

Screenless Raty Pekao payment

tpay.screenlessRatyPekaoPayment(payment);
-

Screenless PayPo payment

+
+

Warning

+

If RatyPekaoPayment returns ScreenlessPaymentCreated result, you have to handle paymentUrl +sent with it and redirect user to it in order to complete the payment.

+
+

Screenless Deferred Payments

+

Tpay SDK allows you to create deferred payments (BNPL) using PayPo method.

+
+

Warning

+

For PayPo payment to work, amount of the payment must be at least 40PLN! +For more information about PayPo payments +check our PayPo documentation.

+
+
+

Tip

+

For sandbox, working phone number is 500123456

+
final payment = PayPoPayment(
   paymentDetails: PaymentDetails(
     amount: 119.99,
@@ -358,53 +1025,15 @@ 

Screenless PayPo payment

tpay.screenlessPayPoPayment(payment);
-

Screenless credit card payment

-

User can pay with credit card or credit card token (returning users only). When paying with card number, expiration date and cvv user should have a option to save card. If selected, after a successful payment the card token will be sent to notification url if defined.

-
final payment = CreditCardPayment(  
-  creditCard: CreditCard(  
-    cardNumber: "card number",
-    expiryDate: ExpirationDate(
-      month: "12",
-      year: "24"
-    ),  
-    cvv: "123",  
-    config: CreditCardConfig(
-      shouldSave: false,  
-      domain: "yourstore.com"  
-    )  
-  ),  
-  creditCardToken: "card token",  
-  paymentDetails: PaymentDetails(  
-    amount: 19.99,  
-    description: "transaction description",  
-    hiddenDescription: "hidden description",  
-    language: Language.pl  
-  ),  
-  payer: Payer(  
-    name: "John Doe",  
-    email: "example@example.com",  
-    phone: null,  
-    address: null  
-  ),  
-  callbacks: Callbacks(  
-    redirects: Redirects(  
-      successUrl: "https://yourstore.com/success",  
-      errorUrl: "https://yourstore.com/error",  
-    ),  
-    notifications: Notifications(  
-      url: "https://yourstore.com",  
-      email: "payments@yourstore.com"  
-    )  
-  )  
-);  
-   
-tpay.screenlessCreditCardPayment(payment);
-
-

Screenless Google Pay payment

-

Users can pay with Google Pay, in order to start the payment you need to provide the Google Pay token. -To make this process easier you can use Google Pay utils described later in this document.

+
+

Warning

+

If PayPoPayment returns ScreenlessPaymentCreated result, you have to handle paymentUrl +sent with it and redirect user to it in order to complete the payment.

+
+

Screenless Google Pay Payment

+

Tpay SDK allows you to perform Google Pay transactions.

final payment = GooglePayPayment(
-  token: "google pay token",
+  token: "google_pay_token",
   paymentDetails: PaymentDetails(
     amount: 19.99,
     description: "transaction description",
@@ -431,10 +1060,81 @@ 

Screenless Google Pay payment

tpay.screenlessGooglePayPayment(payment);
+
+

Warning

+

If GooglePayPayment returns Created result, you have to handle paymentUrl +sent with it and redirect user to it in order to complete the payment.

+
+
+

Warning

+

Take under consideration, that choosing this option, +you have to configure whole Google Wallet SDK and fetch Google Pay token on your own. +For ANDROID system only, we provide a bit smoother way of handling Google Pay transactions with our wrappers.

+
+

Google Pay Utils

+

If you do not want to configure whole Google Pay functionality, you can use GooglePlayUtil class. +It will handle all payments, with additional info in the bottom sheet and send you all the needed info in +callback.

+
+

Important

+

To use GooglePayUtil, first, you have to configure them it.

+
+
final configuration = GooglePayUtilsConfiguration(
+  price: 39.99,
+  merchantName: "merchant_name",
+  merchantId: "merchant_id",
+  environment: GooglePayEnvironment.test,
+);
+
+final configurationResult = tpay.configureGooglePayUtils(configuration);
+
+switch (configurationResult) {
+  case GooglePayConfigureSuccess():
+    break;
+  case GooglePayConfigureError():
+    break;
+}
+
+
+

Warning

+

Before you use our utils, make sure Google Pay is enabled in the device. Use isGooglePayAvailable method.

+
+
final isAvailable = await _tpay.isGooglePayAvailable();
+
+if (isAvailable) {
+  // display Google Pay button
+}
+
+

Next, you can open Google Pay module and let user choose his credit card, so you can use it to make +the payment.

+
final googlePayResult = await _tpay.openGooglePay();
+
+switch (googlePayResult) {
+  case GooglePayOpenSuccess():
+    break;
+  case GooglePayOpenCancelled():
+    break;
+  case GooglePayOpenUnknownError():
+    break;
+  case GooglePayOpenNotConfigured():
+    break;
+}
+
+
+

Important

+

If googlePayResult returns GooglePayOpenSuccess, you HAVE TO use it's content to make an actual +payment buy using GooglePayPayment and screenlessGooglePayPayment.

+

Screenless Apple Pay payment

-

Users can pay with Apple Pay, in order to start the payment you need to provide the Apple Pay token.

+

Tpay SDK allows you to perform Apple Pay transactions.

+
+

Warning

+

To be able to complete Apple Pay payment, you will need apple_pay_token. You HAVE TO +acquire a token by yourself. To do that check +official Apple Pay documentation

+
final payment = ApplePayPayment(
-  applePayToken: "apple pay token",
+  applePayToken: "apple_pay_token",
   paymentDetails: PaymentDetails(
     amount: 19.99,
     description: "transaction description",
@@ -461,126 +1161,8 @@ 

Screenless Apple Pay payment

tpay.screenlessApplePayPayment(payment);
-

Screenless payment result handling

-
void handleScreenlessResult(ScreenlessResult result) {  
-  if (result is ScreenlessPaid) {  
-    // payment completed successfully  
-  }  
-  if (result is ScreenlessPaymentCreated) {  
-    // payment was successfully created  
-    // if it was a BLIK payment user has to accept it in bank app    
-    // if it was a credit card or transfer payment you have to    
-    // display result.paymentUrl to finish the payment    
-    // it is advised to use long polling mechanism to observe    
-    // payment status    
-    // you can get transaction id from result.transactionId    
-  }
-  if (result is ScreenlessPaymentError) {  
-    // creating payment failed  
-  }  
-  if (result is ScreenlessConfiguredPaymentFailed) {  
-    // creating payment failed because of error with:  
-    // - credit card data or credit card token    
-    // - BLIK code or BLIK alias  
-  }
-  if (result is ScreenlessBlikAmbiguousAlias) {
-    // when using BLIK payment with alias this result indicates
-    // that user has alias registered in more than one bank
-    
-    // display result.aliases to the user and
-    // continue payment using tpay.screenlessAmbiguousBLIKPayment(...) method
-  }
-  if (result is ScreenlessValidationError) {  
-    // passed data is incorrect  
-  }  
-  if (result is ScreenlessMethodCallError) {  
-    // something went wrong with the plugin  
-  }  
-}
-
-

Google Pay utils (Android only)

-

SDK offers few convenience methods of interacting with Google Pay.

-
// Configure Google Pay utils before using other methods
-final configuration = GooglePayUtilsConfiguration(
-  price: 39.99, // final price
-  merchantName: "YOUR_STORE_NAME",
-  merchantId: "MERCHANT_ID",
-  environment: GooglePayEnvironment.production
-);
-
-final configurationResult = await tpay.configureGooglePayUtils(configuration);
-if (configurationResult is GooglePayConfigureSuccess) {
-  // configuration successful
-}
-
-if (configurationResult is GooglePayConfigureError) {
-  // configuration failed
-  // check error message via configurationResult.message
-}
-
-// Check if Google Pay is available
-// This method will always return false if Google Pay utils are not configured
-final isAvailable = await tpay.isGooglePayAvailable();
-if (isAvailable) {
-  // display Google Pay button
-}
-
-// If Google Pay is available, you can open it
-final googlePayResult = await tpay.openGooglePay();
-
-if (googlePayResult is GooglePayOpenSuccess) {
-  // credit card data was received successfully
-  // this result contains token, description, cardNetwork and cardTail parameters
-  // use googlePayResult.token parameter with tpay.screenlessGooglePayPayment(...) 
-  // to create a Google Pay payment
-}
-
-if (googlePayResult is GooglePayOpenCancelled) {
-  // user closed the Google Pay module without selecting a credit card
-}
-
-if (googlePayResult is GooglePayOpenUnknownError) {
-  // unknown error
-}
-
-if (googlePayResult is GooglePayOpenNotConfigured) {
-  // Google Pay utils not configured
-}
-
-

Fetch payment channels

-

Fetch available payment channels for your merchant account. Filter channels based on payment constraints.

-
final result = await tpay.getAvailablePaymentChannels();
-
-if (result is PaymentChannelsSuccess) {
-  // payment channels received
-  for (var channel in result.channels) {
-    // channel can have payment constraints
-    // that need to be satisfied, otherwise the payment creation will fail
-    for (var constraint in channel.constraints) {
-      if (constraint is AmountPaymentConstraint) {
-        // check if your payment amount is between
-        // - constraint.minimum
-        // - constraint.maximum
-        // this constraint can have:
-        // - only minimum value
-        // - only maximum value
-        // - minimum and maximum values
-      }
-    }
-    
-    // display payment channel if all payment constraints are satisfied
-  }
-}
-if (result is PaymentChannelsError) {
-  // error occurred
-  // read error message via result.message
-}
-
-

Run sample application

-
git clone <github-link> tpay
-cd tpay/example
-flutter run
-
+

License

+

This library is released under the MIT License.

@@ -588,448 +1170,448 @@

Run sample application

Libraries

- model/apple_pay_configuration + model/apple_pay_configuration
- model/certificate_pinning_configuration + model/certificate_pinning_configuration
- model/google_pay_configuration + model/google_pay_configuration
- model/language/language + model/language/language
- model/language/languages + model/language/languages
- model/language/localized_string + model/language/localized_string
- model/merchant/merchant + model/merchant/merchant
- model/merchant/merchant_authorization + model/merchant/merchant_authorization
- model/merchant/merchant_details + model/merchant/merchant_details
- model/payer/payer + model/payer/payer
- model/payer/payer_address + model/payer/payer_address
- model/payer/payer_context + model/payer/payer_context
- model/paymentChannel/payment_channel + model/paymentChannel/payment_channel
- model/paymentChannel/payment_constraint + model/paymentChannel/payment_constraint
- model/paymentChannel/payment_group + model/paymentChannel/payment_group
- model/paymentMethod/automatic_payment_methods + model/paymentMethod/automatic_payment_methods
- model/paymentMethod/blik_alias + model/paymentMethod/blik_alias
- model/paymentMethod/credit_card_brand + model/paymentMethod/credit_card_brand
- model/paymentMethod/digital_wallet + model/paymentMethod/digital_wallet
- model/paymentMethod/installment_payment + model/paymentMethod/installment_payment
- model/paymentMethod/payment_method + model/paymentMethod/payment_method
- model/paymentMethod/payment_methods + model/paymentMethod/payment_methods
- model/paymentMethod/tokenized_card + model/paymentMethod/tokenized_card
- model/result/google_pay_configure_result + model/result/google_pay_configure_result
- model/result/google_pay_open_result + model/result/google_pay_open_result
- model/result/payment_channels_result + model/result/payment_channels_result
- model/result/result + model/result/result
- model/result/screenless_result + model/result/screenless_result
- model/screenless/ambiguous_alias + model/screenless/ambiguous_alias
- model/screenless/ambiguous_blik_payment + model/screenless/ambiguous_blik_payment
- model/screenless/apple_pay_payment + model/screenless/apple_pay_payment
- model/screenless/blik_payment + model/screenless/blik_payment
- model/screenless/callbacks + model/screenless/callbacks
- model/screenless/credit_card + model/screenless/credit_card
- model/screenless/credit_card_config + model/screenless/credit_card_config
- model/screenless/credit_card_payment + model/screenless/credit_card_payment
- model/screenless/expiration_date + model/screenless/expiration_date
- model/screenless/google_pay_environment + model/screenless/google_pay_environment
- model/screenless/google_pay_payment + model/screenless/google_pay_payment
- model/screenless/google_pay_utils_configuration + model/screenless/google_pay_utils_configuration
- model/screenless/notifications + model/screenless/notifications
- model/screenless/pay_po_payment + model/screenless/pay_po_payment
- model/screenless/payment_details + model/screenless/payment_details
- model/screenless/raty_pekao_payment + model/screenless/raty_pekao_payment
- model/screenless/recursive + model/screenless/recursive
- model/screenless/redirects + model/screenless/redirects
- model/screenless/screenless_payment + model/screenless/screenless_payment
- model/screenless/transfer_method + model/screenless/transfer_method
- model/screenless/transfer_payment + model/screenless/transfer_payment
- model/tokenization/tokenization + model/tokenization/tokenization
- model/tpay_configuration + model/tpay_configuration
- model/tpay_environment + model/tpay_environment
- model/transaction/single_transaction + model/transaction/single_transaction
- model/transaction/token_payment + model/transaction/token_payment
- model/transaction/transaction + model/transaction/transaction
- model/wallet_configuration + model/wallet_configuration
- tpay_button + tpay_button
- tpay_method_channel + tpay_method_channel
- tpay_platform_interface + tpay_platform_interface
- util/google_pay_configuration_util + util/google_pay_configuration_util
- util/google_pay_util + util/google_pay_util
- util/payment_channels_util + util/payment_channels_util
- util/result_util + util/result_util
- util/screenless_result_util + util/screenless_result_util
@@ -1052,70 +1634,70 @@

Libraries

  1. Libraries
  2. -
  3. model/apple_pay_configuration
  4. -
  5. model/certificate_pinning_configuration
  6. -
  7. model/google_pay_configuration
  8. -
  9. model/language/language
  10. -
  11. model/language/languages
  12. -
  13. model/language/localized_string
  14. -
  15. model/merchant/merchant
  16. -
  17. model/merchant/merchant_authorization
  18. -
  19. model/merchant/merchant_details
  20. -
  21. model/payer/payer
  22. -
  23. model/payer/payer_address
  24. -
  25. model/payer/payer_context
  26. -
  27. model/paymentChannel/payment_channel
  28. -
  29. model/paymentChannel/payment_constraint
  30. -
  31. model/paymentChannel/payment_group
  32. -
  33. model/paymentMethod/automatic_payment_methods
  34. -
  35. model/paymentMethod/blik_alias
  36. -
  37. model/paymentMethod/credit_card_brand
  38. -
  39. model/paymentMethod/digital_wallet
  40. -
  41. model/paymentMethod/installment_payment
  42. -
  43. model/paymentMethod/payment_method
  44. -
  45. model/paymentMethod/payment_methods
  46. -
  47. model/paymentMethod/tokenized_card
  48. -
  49. model/result/google_pay_configure_result
  50. -
  51. model/result/google_pay_open_result
  52. -
  53. model/result/payment_channels_result
  54. -
  55. model/result/result
  56. -
  57. model/result/screenless_result
  58. -
  59. model/screenless/ambiguous_alias
  60. -
  61. model/screenless/ambiguous_blik_payment
  62. -
  63. model/screenless/apple_pay_payment
  64. -
  65. model/screenless/blik_payment
  66. -
  67. model/screenless/callbacks
  68. -
  69. model/screenless/credit_card
  70. -
  71. model/screenless/credit_card_config
  72. -
  73. model/screenless/credit_card_payment
  74. -
  75. model/screenless/expiration_date
  76. -
  77. model/screenless/google_pay_environment
  78. -
  79. model/screenless/google_pay_payment
  80. -
  81. model/screenless/google_pay_utils_configuration
  82. -
  83. model/screenless/notifications
  84. -
  85. model/screenless/pay_po_payment
  86. -
  87. model/screenless/payment_details
  88. -
  89. model/screenless/raty_pekao_payment
  90. -
  91. model/screenless/recursive
  92. -
  93. model/screenless/redirects
  94. -
  95. model/screenless/screenless_payment
  96. -
  97. model/screenless/transfer_method
  98. -
  99. model/screenless/transfer_payment
  100. -
  101. model/tokenization/tokenization
  102. -
  103. model/tpay_configuration
  104. -
  105. model/tpay_environment
  106. -
  107. model/transaction/single_transaction
  108. -
  109. model/transaction/token_payment
  110. -
  111. model/transaction/transaction
  112. -
  113. model/wallet_configuration
  114. -
  115. tpay_button
  116. -
  117. tpay_method_channel
  118. -
  119. tpay_platform_interface
  120. -
  121. util/google_pay_configuration_util
  122. -
  123. util/google_pay_util
  124. -
  125. util/payment_channels_util
  126. -
  127. util/result_util
  128. -
  129. util/screenless_result_util
  130. +
  131. model/apple_pay_configuration
  132. +
  133. model/certificate_pinning_configuration
  134. +
  135. model/google_pay_configuration
  136. +
  137. model/language/language
  138. +
  139. model/language/languages
  140. +
  141. model/language/localized_string
  142. +
  143. model/merchant/merchant
  144. +
  145. model/merchant/merchant_authorization
  146. +
  147. model/merchant/merchant_details
  148. +
  149. model/payer/payer
  150. +
  151. model/payer/payer_address
  152. +
  153. model/payer/payer_context
  154. +
  155. model/paymentChannel/payment_channel
  156. +
  157. model/paymentChannel/payment_constraint
  158. +
  159. model/paymentChannel/payment_group
  160. +
  161. model/paymentMethod/automatic_payment_methods
  162. +
  163. model/paymentMethod/blik_alias
  164. +
  165. model/paymentMethod/credit_card_brand
  166. +
  167. model/paymentMethod/digital_wallet
  168. +
  169. model/paymentMethod/installment_payment
  170. +
  171. model/paymentMethod/payment_method
  172. +
  173. model/paymentMethod/payment_methods
  174. +
  175. model/paymentMethod/tokenized_card
  176. +
  177. model/result/google_pay_configure_result
  178. +
  179. model/result/google_pay_open_result
  180. +
  181. model/result/payment_channels_result
  182. +
  183. model/result/result
  184. +
  185. model/result/screenless_result
  186. +
  187. model/screenless/ambiguous_alias
  188. +
  189. model/screenless/ambiguous_blik_payment
  190. +
  191. model/screenless/apple_pay_payment
  192. +
  193. model/screenless/blik_payment
  194. +
  195. model/screenless/callbacks
  196. +
  197. model/screenless/credit_card
  198. +
  199. model/screenless/credit_card_config
  200. +
  201. model/screenless/credit_card_payment
  202. +
  203. model/screenless/expiration_date
  204. +
  205. model/screenless/google_pay_environment
  206. +
  207. model/screenless/google_pay_payment
  208. +
  209. model/screenless/google_pay_utils_configuration
  210. +
  211. model/screenless/notifications
  212. +
  213. model/screenless/pay_po_payment
  214. +
  215. model/screenless/payment_details
  216. +
  217. model/screenless/raty_pekao_payment
  218. +
  219. model/screenless/recursive
  220. +
  221. model/screenless/redirects
  222. +
  223. model/screenless/screenless_payment
  224. +
  225. model/screenless/transfer_method
  226. +
  227. model/screenless/transfer_payment
  228. +
  229. model/tokenization/tokenization
  230. +
  231. model/tpay_configuration
  232. +
  233. model/tpay_environment
  234. +
  235. model/transaction/single_transaction
  236. +
  237. model/transaction/token_payment
  238. +
  239. model/transaction/transaction
  240. +
  241. model/wallet_configuration
  242. +
  243. tpay_button
  244. +
  245. tpay_method_channel
  246. +
  247. tpay_platform_interface
  248. +
  249. util/google_pay_configuration_util
  250. +
  251. util/google_pay_util
  252. +
  253. util/payment_channels_util
  254. +
  255. util/result_util
  256. +
  257. util/screenless_result_util
@@ -1125,7 +1707,7 @@
ApplePayConfiguration class
@@ -95,7 +92,7 @@
ApplePayConfiguration class
flutter_tpay - 1.2.1 + 1.2.8
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/countryCode.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/countryCode.html index 4d4a3a85..c84ba312 100644 --- a/doc/model_apple_pay_configuration/ApplePayConfiguration/countryCode.html +++ b/doc/model_apple_pay_configuration/ApplePayConfiguration/countryCode.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
- -
+
Implementation @@ -97,7 +94,7 @@
ApplePayConfiguration class
flutter_tpay - 1.2.1 + 1.2.8
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/merchantIdentifier.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/merchantIdentifier.html index f0b7d373..496eb476 100644 --- a/doc/model_apple_pay_configuration/ApplePayConfiguration/merchantIdentifier.html +++ b/doc/model_apple_pay_configuration/ApplePayConfiguration/merchantIdentifier.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
- -
+
Implementation @@ -97,7 +94,7 @@
ApplePayConfiguration class
flutter_tpay - 1.2.1 + 1.2.8
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/toJson.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/toJson.html index c4c46214..fdc0c135 100644 --- a/doc/model_apple_pay_configuration/ApplePayConfiguration/toJson.html +++ b/doc/model_apple_pay_configuration/ApplePayConfiguration/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
- -
+
Implementation @@ -97,7 +94,7 @@
ApplePayConfiguration class
flutter_tpay - 1.2.1 + 1.2.8
diff --git a/doc/model_apple_pay_configuration/index.html b/doc/model_apple_pay_configuration/index.html index 08d60a81..60fb3e43 100644 --- a/doc/model_apple_pay_configuration/index.html +++ b/doc/model_apple_pay_configuration/index.html @@ -31,17 +31,14 @@ -
- -
+
Classes
flutter_tpay package
  1. Libraries
  2. -
  3. model/apple_pay_configuration
  4. -
  5. model/certificate_pinning_configuration
  6. -
  7. model/google_pay_configuration
  8. -
  9. model/language/language
  10. -
  11. model/language/languages
  12. -
  13. model/language/localized_string
  14. -
  15. model/merchant/merchant
  16. -
  17. model/merchant/merchant_authorization
  18. -
  19. model/merchant/merchant_details
  20. -
  21. model/payer/payer
  22. -
  23. model/payer/payer_address
  24. -
  25. model/payer/payer_context
  26. -
  27. model/paymentChannel/payment_channel
  28. -
  29. model/paymentChannel/payment_constraint
  30. -
  31. model/paymentChannel/payment_group
  32. -
  33. model/paymentMethod/automatic_payment_methods
  34. -
  35. model/paymentMethod/blik_alias
  36. -
  37. model/paymentMethod/credit_card_brand
  38. -
  39. model/paymentMethod/digital_wallet
  40. -
  41. model/paymentMethod/installment_payment
  42. -
  43. model/paymentMethod/payment_method
  44. -
  45. model/paymentMethod/payment_methods
  46. -
  47. model/paymentMethod/tokenized_card
  48. -
  49. model/result/google_pay_configure_result
  50. -
  51. model/result/google_pay_open_result
  52. -
  53. model/result/payment_channels_result
  54. -
  55. model/result/result
  56. -
  57. model/result/screenless_result
  58. -
  59. model/screenless/ambiguous_alias
  60. -
  61. model/screenless/ambiguous_blik_payment
  62. -
  63. model/screenless/apple_pay_payment
  64. -
  65. model/screenless/blik_payment
  66. -
  67. model/screenless/callbacks
  68. -
  69. model/screenless/credit_card
  70. -
  71. model/screenless/credit_card_config
  72. -
  73. model/screenless/credit_card_payment
  74. -
  75. model/screenless/expiration_date
  76. -
  77. model/screenless/google_pay_environment
  78. -
  79. model/screenless/google_pay_payment
  80. -
  81. model/screenless/google_pay_utils_configuration
  82. -
  83. model/screenless/notifications
  84. -
  85. model/screenless/pay_po_payment
  86. -
  87. model/screenless/payment_details
  88. -
  89. model/screenless/raty_pekao_payment
  90. -
  91. model/screenless/recursive
  92. -
  93. model/screenless/redirects
  94. -
  95. model/screenless/screenless_payment
  96. -
  97. model/screenless/transfer_method
  98. -
  99. model/screenless/transfer_payment
  100. -
  101. model/tokenization/tokenization
  102. -
  103. model/tpay_configuration
  104. -
  105. model/tpay_environment
  106. -
  107. model/transaction/single_transaction
  108. -
  109. model/transaction/token_payment
  110. -
  111. model/transaction/transaction
  112. -
  113. model/wallet_configuration
  114. -
  115. tpay_button
  116. -
  117. tpay_method_channel
  118. -
  119. tpay_platform_interface
  120. -
  121. util/google_pay_configuration_util
  122. -
  123. util/google_pay_util
  124. -
  125. util/payment_channels_util
  126. -
  127. util/result_util
  128. -
  129. util/screenless_result_util
  130. +
  131. model/apple_pay_configuration
  132. +
  133. model/certificate_pinning_configuration
  134. +
  135. model/google_pay_configuration
  136. +
  137. model/language/language
  138. +
  139. model/language/languages
  140. +
  141. model/language/localized_string
  142. +
  143. model/merchant/merchant
  144. +
  145. model/merchant/merchant_authorization
  146. +
  147. model/merchant/merchant_details
  148. +
  149. model/payer/payer
  150. +
  151. model/payer/payer_address
  152. +
  153. model/payer/payer_context
  154. +
  155. model/paymentChannel/payment_channel
  156. +
  157. model/paymentChannel/payment_constraint
  158. +
  159. model/paymentChannel/payment_group
  160. +
  161. model/paymentMethod/automatic_payment_methods
  162. +
  163. model/paymentMethod/blik_alias
  164. +
  165. model/paymentMethod/credit_card_brand
  166. +
  167. model/paymentMethod/digital_wallet
  168. +
  169. model/paymentMethod/installment_payment
  170. +
  171. model/paymentMethod/payment_method
  172. +
  173. model/paymentMethod/payment_methods
  174. +
  175. model/paymentMethod/tokenized_card
  176. +
  177. model/result/google_pay_configure_result
  178. +
  179. model/result/google_pay_open_result
  180. +
  181. model/result/payment_channels_result
  182. +
  183. model/result/result
  184. +
  185. model/result/screenless_result
  186. +
  187. model/screenless/ambiguous_alias
  188. +
  189. model/screenless/ambiguous_blik_payment
  190. +
  191. model/screenless/apple_pay_payment
  192. +
  193. model/screenless/blik_payment
  194. +
  195. model/screenless/callbacks
  196. +
  197. model/screenless/credit_card
  198. +
  199. model/screenless/credit_card_config
  200. +
  201. model/screenless/credit_card_payment
  202. +
  203. model/screenless/expiration_date
  204. +
  205. model/screenless/google_pay_environment
  206. +
  207. model/screenless/google_pay_payment
  208. +
  209. model/screenless/google_pay_utils_configuration
  210. +
  211. model/screenless/notifications
  212. +
  213. model/screenless/pay_po_payment
  214. +
  215. model/screenless/payment_details
  216. +
  217. model/screenless/raty_pekao_payment
  218. +
  219. model/screenless/recursive
  220. +
  221. model/screenless/redirects
  222. +
  223. model/screenless/screenless_payment
  224. +
  225. model/screenless/transfer_method
  226. +
  227. model/screenless/transfer_payment
  228. +
  229. model/tokenization/tokenization
  230. +
  231. model/tpay_configuration
  232. +
  233. model/tpay_environment
  234. +
  235. model/transaction/single_transaction
  236. +
  237. model/transaction/token_payment
  238. +
  239. model/transaction/transaction
  240. +
  241. model/wallet_configuration
  242. +
  243. tpay_button
  244. +
  245. tpay_method_channel
  246. +
  247. tpay_platform_interface
  248. +
  249. util/google_pay_configuration_util
  250. +
  251. util/google_pay_util
  252. +
  253. util/payment_channels_util
  254. +
  255. util/result_util
  256. +
  257. util/screenless_result_util
@@ -176,7 +173,7 @@
apple_pay_configuration library
flutter_tpay - 1.2.1 + 1.2.8
diff --git a/doc/model_apple_pay_configuration/model_apple_pay_configuration-library-sidebar.html b/doc/model_apple_pay_configuration/model_apple_pay_configuration-library-sidebar.html index b868d2e7..1e37dd9a 100644 --- a/doc/model_apple_pay_configuration/model_apple_pay_configuration-library-sidebar.html +++ b/doc/model_apple_pay_configuration/model_apple_pay_configuration-library-sidebar.html @@ -1,5 +1,5 @@
    -
  1. Classes
  2. +
  3. Classes
  4. ApplePayConfiguration
  5. diff --git a/doc/model_apple_pay_configuration/model_apple_pay_configuration-library.html b/doc/model_apple_pay_configuration/model_apple_pay_configuration-library.html index 6b516f08..855f2349 100644 --- a/doc/model_apple_pay_configuration/model_apple_pay_configuration-library.html +++ b/doc/model_apple_pay_configuration/model_apple_pay_configuration-library.html @@ -1,10 +1,10 @@ - - + + -

    New URL

    +

    New URL

    \ No newline at end of file diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class-sidebar.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class-sidebar.html index 37a861f9..1bd5fdc6 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class-sidebar.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class-sidebar.html @@ -1,7 +1,7 @@
    1. Constructors
    2. -
    3. CertificatePinningConfiguration
    4. +
    5. new
    6. fromJson
    7. diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class.html index bf303144..22d0c02a 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration-class.html @@ -25,24 +25,21 @@ menu
      CertificatePinningConfiguration
      -
      - -
      +
      CertificatePinningConfiguration class
      Annotations
      @@ -90,7 +87,7 @@

      CertificatePinningConfiguration class

      Constructors

      -
      +
      CertificatePinningConfiguration({required String publicKeyHash})
      @@ -244,7 +241,7 @@

      Operators

      @@ -257,7 +254,7 @@
      certificate_pinning_configuration library
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.fromJson.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.fromJson.html index 09fc48ea..c356b22a 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.fromJson.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
      - -
      +
      Implementation

      @@ -94,7 +91,7 @@
      CertificatePinningConfiguration class
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.html index e009168f..1067d35a 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.html @@ -4,8 +4,8 @@ - - CertificatePinningConfiguration constructor - CertificatePinningConfiguration - certificate_pinning_configuration library - Dart API + + CertificatePinningConfiguration.new constructor - CertificatePinningConfiguration - certificate_pinning_configuration library - Dart API @@ -25,25 +25,22 @@ menu -
      CertificatePinningConfiguration
      +
      CertificatePinningConfiguration.new
      -
      - -
      +
      Implementation
      CertificatePinningConfiguration class
      @@ -94,7 +91,7 @@
      CertificatePinningConfiguration class
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/pinnedDomain.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/pinnedDomain.html index 054d45b7..1d400991 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/pinnedDomain.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/pinnedDomain.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
      - -
      +
      Implementation @@ -97,7 +94,7 @@
      CertificatePinningConfiguration class
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/publicKeyHash.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/publicKeyHash.html index 6171686e..29ccdff2 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/publicKeyHash.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/publicKeyHash.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
      - -
      +
      Implementation @@ -97,7 +94,7 @@
      CertificatePinningConfiguration class
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/toJson.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/toJson.html index c15cfc92..18390bfe 100644 --- a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/toJson.html +++ b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
      - -
      +
      Implementation @@ -97,7 +94,7 @@
      CertificatePinningConfiguration class
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/index.html b/doc/model_certificate_pinning_configuration/index.html index ac844ca2..8d3f9351 100644 --- a/doc/model_certificate_pinning_configuration/index.html +++ b/doc/model_certificate_pinning_configuration/index.html @@ -31,17 +31,14 @@ -
      - -
      +
      Classes
      flutter_tpay package
      1. Libraries
      2. -
      3. model/apple_pay_configuration
      4. -
      5. model/certificate_pinning_configuration
      6. -
      7. model/google_pay_configuration
      8. -
      9. model/language/language
      10. -
      11. model/language/languages
      12. -
      13. model/language/localized_string
      14. -
      15. model/merchant/merchant
      16. -
      17. model/merchant/merchant_authorization
      18. -
      19. model/merchant/merchant_details
      20. -
      21. model/payer/payer
      22. -
      23. model/payer/payer_address
      24. -
      25. model/payer/payer_context
      26. -
      27. model/paymentChannel/payment_channel
      28. -
      29. model/paymentChannel/payment_constraint
      30. -
      31. model/paymentChannel/payment_group
      32. -
      33. model/paymentMethod/automatic_payment_methods
      34. -
      35. model/paymentMethod/blik_alias
      36. -
      37. model/paymentMethod/credit_card_brand
      38. -
      39. model/paymentMethod/digital_wallet
      40. -
      41. model/paymentMethod/installment_payment
      42. -
      43. model/paymentMethod/payment_method
      44. -
      45. model/paymentMethod/payment_methods
      46. -
      47. model/paymentMethod/tokenized_card
      48. -
      49. model/result/google_pay_configure_result
      50. -
      51. model/result/google_pay_open_result
      52. -
      53. model/result/payment_channels_result
      54. -
      55. model/result/result
      56. -
      57. model/result/screenless_result
      58. -
      59. model/screenless/ambiguous_alias
      60. -
      61. model/screenless/ambiguous_blik_payment
      62. -
      63. model/screenless/apple_pay_payment
      64. -
      65. model/screenless/blik_payment
      66. -
      67. model/screenless/callbacks
      68. -
      69. model/screenless/credit_card
      70. -
      71. model/screenless/credit_card_config
      72. -
      73. model/screenless/credit_card_payment
      74. -
      75. model/screenless/expiration_date
      76. -
      77. model/screenless/google_pay_environment
      78. -
      79. model/screenless/google_pay_payment
      80. -
      81. model/screenless/google_pay_utils_configuration
      82. -
      83. model/screenless/notifications
      84. -
      85. model/screenless/pay_po_payment
      86. -
      87. model/screenless/payment_details
      88. -
      89. model/screenless/raty_pekao_payment
      90. -
      91. model/screenless/recursive
      92. -
      93. model/screenless/redirects
      94. -
      95. model/screenless/screenless_payment
      96. -
      97. model/screenless/transfer_method
      98. -
      99. model/screenless/transfer_payment
      100. -
      101. model/tokenization/tokenization
      102. -
      103. model/tpay_configuration
      104. -
      105. model/tpay_environment
      106. -
      107. model/transaction/single_transaction
      108. -
      109. model/transaction/token_payment
      110. -
      111. model/transaction/transaction
      112. -
      113. model/wallet_configuration
      114. -
      115. tpay_button
      116. -
      117. tpay_method_channel
      118. -
      119. tpay_platform_interface
      120. -
      121. util/google_pay_configuration_util
      122. -
      123. util/google_pay_util
      124. -
      125. util/payment_channels_util
      126. -
      127. util/result_util
      128. -
      129. util/screenless_result_util
      130. +
      131. model/apple_pay_configuration
      132. +
      133. model/certificate_pinning_configuration
      134. +
      135. model/google_pay_configuration
      136. +
      137. model/language/language
      138. +
      139. model/language/languages
      140. +
      141. model/language/localized_string
      142. +
      143. model/merchant/merchant
      144. +
      145. model/merchant/merchant_authorization
      146. +
      147. model/merchant/merchant_details
      148. +
      149. model/payer/payer
      150. +
      151. model/payer/payer_address
      152. +
      153. model/payer/payer_context
      154. +
      155. model/paymentChannel/payment_channel
      156. +
      157. model/paymentChannel/payment_constraint
      158. +
      159. model/paymentChannel/payment_group
      160. +
      161. model/paymentMethod/automatic_payment_methods
      162. +
      163. model/paymentMethod/blik_alias
      164. +
      165. model/paymentMethod/credit_card_brand
      166. +
      167. model/paymentMethod/digital_wallet
      168. +
      169. model/paymentMethod/installment_payment
      170. +
      171. model/paymentMethod/payment_method
      172. +
      173. model/paymentMethod/payment_methods
      174. +
      175. model/paymentMethod/tokenized_card
      176. +
      177. model/result/google_pay_configure_result
      178. +
      179. model/result/google_pay_open_result
      180. +
      181. model/result/payment_channels_result
      182. +
      183. model/result/result
      184. +
      185. model/result/screenless_result
      186. +
      187. model/screenless/ambiguous_alias
      188. +
      189. model/screenless/ambiguous_blik_payment
      190. +
      191. model/screenless/apple_pay_payment
      192. +
      193. model/screenless/blik_payment
      194. +
      195. model/screenless/callbacks
      196. +
      197. model/screenless/credit_card
      198. +
      199. model/screenless/credit_card_config
      200. +
      201. model/screenless/credit_card_payment
      202. +
      203. model/screenless/expiration_date
      204. +
      205. model/screenless/google_pay_environment
      206. +
      207. model/screenless/google_pay_payment
      208. +
      209. model/screenless/google_pay_utils_configuration
      210. +
      211. model/screenless/notifications
      212. +
      213. model/screenless/pay_po_payment
      214. +
      215. model/screenless/payment_details
      216. +
      217. model/screenless/raty_pekao_payment
      218. +
      219. model/screenless/recursive
      220. +
      221. model/screenless/redirects
      222. +
      223. model/screenless/screenless_payment
      224. +
      225. model/screenless/transfer_method
      226. +
      227. model/screenless/transfer_payment
      228. +
      229. model/tokenization/tokenization
      230. +
      231. model/tpay_configuration
      232. +
      233. model/tpay_environment
      234. +
      235. model/transaction/single_transaction
      236. +
      237. model/transaction/token_payment
      238. +
      239. model/transaction/transaction
      240. +
      241. model/wallet_configuration
      242. +
      243. tpay_button
      244. +
      245. tpay_method_channel
      246. +
      247. tpay_platform_interface
      248. +
      249. util/google_pay_configuration_util
      250. +
      251. util/google_pay_util
      252. +
      253. util/payment_channels_util
      254. +
      255. util/result_util
      256. +
      257. util/screenless_result_util
      @@ -176,7 +173,7 @@
      certificate_pinning_configuration library
      flutter_tpay - 1.2.1 + 1.2.8
      diff --git a/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library-sidebar.html b/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library-sidebar.html index dc1b291b..63e5f66e 100644 --- a/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library-sidebar.html +++ b/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library-sidebar.html @@ -1,5 +1,5 @@
        -
      1. Classes
      2. +
      3. Classes
      4. CertificatePinningConfiguration
      5. diff --git a/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library.html b/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library.html index c0930dc4..743a2346 100644 --- a/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library.html +++ b/doc/model_certificate_pinning_configuration/model_certificate_pinning_configuration-library.html @@ -1,10 +1,10 @@ - - + + -

        New URL

        +

        New URL

        \ No newline at end of file diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration-class-sidebar.html b/doc/model_google_pay_configuration/GooglePayConfiguration-class-sidebar.html index 555374d8..be695d66 100644 --- a/doc/model_google_pay_configuration/GooglePayConfiguration-class-sidebar.html +++ b/doc/model_google_pay_configuration/GooglePayConfiguration-class-sidebar.html @@ -1,7 +1,7 @@
        1. Constructors
        2. -
        3. GooglePayConfiguration
        4. +
        5. new
        6. fromJson
        7. diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration-class.html b/doc/model_google_pay_configuration/GooglePayConfiguration-class.html index 75bc61fc..7396650a 100644 --- a/doc/model_google_pay_configuration/GooglePayConfiguration-class.html +++ b/doc/model_google_pay_configuration/GooglePayConfiguration-class.html @@ -25,24 +25,21 @@ menu
          GooglePayConfiguration
          -
          - -
          +
          GooglePayConfiguration class
          Annotations
          @@ -89,7 +86,7 @@

          GooglePayConfiguration class

          Constructors

          -
          +
          GooglePayConfiguration({required String merchantId})
          @@ -231,7 +228,7 @@

          Operators

          @@ -244,7 +241,7 @@
          google_pay_configuration library
          flutter_tpay - 1.2.1 + 1.2.8
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.fromJson.html b/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.fromJson.html index a41bde54..22f16bea 100644 --- a/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.fromJson.html +++ b/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
          - -
          +
          Implementation

          @@ -94,7 +91,7 @@
          GooglePayConfiguration class
          flutter_tpay - 1.2.1 + 1.2.8
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.html b/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.html index f505c876..97381ba8 100644 --- a/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.html +++ b/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.html @@ -4,8 +4,8 @@ - - GooglePayConfiguration constructor - GooglePayConfiguration - google_pay_configuration library - Dart API + + GooglePayConfiguration.new constructor - GooglePayConfiguration - google_pay_configuration library - Dart API @@ -25,25 +25,22 @@ menu -
          GooglePayConfiguration
          +
          GooglePayConfiguration.new
          -
          - -
          +
          Implementation
          GooglePayConfiguration class
          @@ -94,7 +91,7 @@
          GooglePayConfiguration class
          flutter_tpay - 1.2.1 + 1.2.8
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/merchantId.html b/doc/model_google_pay_configuration/GooglePayConfiguration/merchantId.html index 35de0adc..f111a18d 100644 --- a/doc/model_google_pay_configuration/GooglePayConfiguration/merchantId.html +++ b/doc/model_google_pay_configuration/GooglePayConfiguration/merchantId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
          - -
          +
          Implementation @@ -97,7 +94,7 @@
          GooglePayConfiguration class
          flutter_tpay - 1.2.1 + 1.2.8
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/toJson.html b/doc/model_google_pay_configuration/GooglePayConfiguration/toJson.html index 9755711d..37751420 100644 --- a/doc/model_google_pay_configuration/GooglePayConfiguration/toJson.html +++ b/doc/model_google_pay_configuration/GooglePayConfiguration/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
          - -
          +
          Implementation @@ -97,7 +94,7 @@
          GooglePayConfiguration class
          flutter_tpay - 1.2.1 + 1.2.8
          diff --git a/doc/model_google_pay_configuration/index.html b/doc/model_google_pay_configuration/index.html index fad873ad..be361e8c 100644 --- a/doc/model_google_pay_configuration/index.html +++ b/doc/model_google_pay_configuration/index.html @@ -31,17 +31,14 @@ -
          - -
          +
          Classes
          flutter_tpay package
          1. Libraries
          2. -
          3. model/apple_pay_configuration
          4. -
          5. model/certificate_pinning_configuration
          6. -
          7. model/google_pay_configuration
          8. -
          9. model/language/language
          10. -
          11. model/language/languages
          12. -
          13. model/language/localized_string
          14. -
          15. model/merchant/merchant
          16. -
          17. model/merchant/merchant_authorization
          18. -
          19. model/merchant/merchant_details
          20. -
          21. model/payer/payer
          22. -
          23. model/payer/payer_address
          24. -
          25. model/payer/payer_context
          26. -
          27. model/paymentChannel/payment_channel
          28. -
          29. model/paymentChannel/payment_constraint
          30. -
          31. model/paymentChannel/payment_group
          32. -
          33. model/paymentMethod/automatic_payment_methods
          34. -
          35. model/paymentMethod/blik_alias
          36. -
          37. model/paymentMethod/credit_card_brand
          38. -
          39. model/paymentMethod/digital_wallet
          40. -
          41. model/paymentMethod/installment_payment
          42. -
          43. model/paymentMethod/payment_method
          44. -
          45. model/paymentMethod/payment_methods
          46. -
          47. model/paymentMethod/tokenized_card
          48. -
          49. model/result/google_pay_configure_result
          50. -
          51. model/result/google_pay_open_result
          52. -
          53. model/result/payment_channels_result
          54. -
          55. model/result/result
          56. -
          57. model/result/screenless_result
          58. -
          59. model/screenless/ambiguous_alias
          60. -
          61. model/screenless/ambiguous_blik_payment
          62. -
          63. model/screenless/apple_pay_payment
          64. -
          65. model/screenless/blik_payment
          66. -
          67. model/screenless/callbacks
          68. -
          69. model/screenless/credit_card
          70. -
          71. model/screenless/credit_card_config
          72. -
          73. model/screenless/credit_card_payment
          74. -
          75. model/screenless/expiration_date
          76. -
          77. model/screenless/google_pay_environment
          78. -
          79. model/screenless/google_pay_payment
          80. -
          81. model/screenless/google_pay_utils_configuration
          82. -
          83. model/screenless/notifications
          84. -
          85. model/screenless/pay_po_payment
          86. -
          87. model/screenless/payment_details
          88. -
          89. model/screenless/raty_pekao_payment
          90. -
          91. model/screenless/recursive
          92. -
          93. model/screenless/redirects
          94. -
          95. model/screenless/screenless_payment
          96. -
          97. model/screenless/transfer_method
          98. -
          99. model/screenless/transfer_payment
          100. -
          101. model/tokenization/tokenization
          102. -
          103. model/tpay_configuration
          104. -
          105. model/tpay_environment
          106. -
          107. model/transaction/single_transaction
          108. -
          109. model/transaction/token_payment
          110. -
          111. model/transaction/transaction
          112. -
          113. model/wallet_configuration
          114. -
          115. tpay_button
          116. -
          117. tpay_method_channel
          118. -
          119. tpay_platform_interface
          120. -
          121. util/google_pay_configuration_util
          122. -
          123. util/google_pay_util
          124. -
          125. util/payment_channels_util
          126. -
          127. util/result_util
          128. -
          129. util/screenless_result_util
          130. +
          131. model/apple_pay_configuration
          132. +
          133. model/certificate_pinning_configuration
          134. +
          135. model/google_pay_configuration
          136. +
          137. model/language/language
          138. +
          139. model/language/languages
          140. +
          141. model/language/localized_string
          142. +
          143. model/merchant/merchant
          144. +
          145. model/merchant/merchant_authorization
          146. +
          147. model/merchant/merchant_details
          148. +
          149. model/payer/payer
          150. +
          151. model/payer/payer_address
          152. +
          153. model/payer/payer_context
          154. +
          155. model/paymentChannel/payment_channel
          156. +
          157. model/paymentChannel/payment_constraint
          158. +
          159. model/paymentChannel/payment_group
          160. +
          161. model/paymentMethod/automatic_payment_methods
          162. +
          163. model/paymentMethod/blik_alias
          164. +
          165. model/paymentMethod/credit_card_brand
          166. +
          167. model/paymentMethod/digital_wallet
          168. +
          169. model/paymentMethod/installment_payment
          170. +
          171. model/paymentMethod/payment_method
          172. +
          173. model/paymentMethod/payment_methods
          174. +
          175. model/paymentMethod/tokenized_card
          176. +
          177. model/result/google_pay_configure_result
          178. +
          179. model/result/google_pay_open_result
          180. +
          181. model/result/payment_channels_result
          182. +
          183. model/result/result
          184. +
          185. model/result/screenless_result
          186. +
          187. model/screenless/ambiguous_alias
          188. +
          189. model/screenless/ambiguous_blik_payment
          190. +
          191. model/screenless/apple_pay_payment
          192. +
          193. model/screenless/blik_payment
          194. +
          195. model/screenless/callbacks
          196. +
          197. model/screenless/credit_card
          198. +
          199. model/screenless/credit_card_config
          200. +
          201. model/screenless/credit_card_payment
          202. +
          203. model/screenless/expiration_date
          204. +
          205. model/screenless/google_pay_environment
          206. +
          207. model/screenless/google_pay_payment
          208. +
          209. model/screenless/google_pay_utils_configuration
          210. +
          211. model/screenless/notifications
          212. +
          213. model/screenless/pay_po_payment
          214. +
          215. model/screenless/payment_details
          216. +
          217. model/screenless/raty_pekao_payment
          218. +
          219. model/screenless/recursive
          220. +
          221. model/screenless/redirects
          222. +
          223. model/screenless/screenless_payment
          224. +
          225. model/screenless/transfer_method
          226. +
          227. model/screenless/transfer_payment
          228. +
          229. model/tokenization/tokenization
          230. +
          231. model/tpay_configuration
          232. +
          233. model/tpay_environment
          234. +
          235. model/transaction/single_transaction
          236. +
          237. model/transaction/token_payment
          238. +
          239. model/transaction/transaction
          240. +
          241. model/wallet_configuration
          242. +
          243. tpay_button
          244. +
          245. tpay_method_channel
          246. +
          247. tpay_platform_interface
          248. +
          249. util/google_pay_configuration_util
          250. +
          251. util/google_pay_util
          252. +
          253. util/payment_channels_util
          254. +
          255. util/result_util
          256. +
          257. util/screenless_result_util
          @@ -176,7 +173,7 @@
          google_pay_configuration library
          flutter_tpay - 1.2.1 + 1.2.8
          diff --git a/doc/model_google_pay_configuration/model_google_pay_configuration-library-sidebar.html b/doc/model_google_pay_configuration/model_google_pay_configuration-library-sidebar.html index 405c528e..1193596f 100644 --- a/doc/model_google_pay_configuration/model_google_pay_configuration-library-sidebar.html +++ b/doc/model_google_pay_configuration/model_google_pay_configuration-library-sidebar.html @@ -1,5 +1,5 @@
            -
          1. Classes
          2. +
          3. Classes
          4. GooglePayConfiguration
          5. diff --git a/doc/model_google_pay_configuration/model_google_pay_configuration-library.html b/doc/model_google_pay_configuration/model_google_pay_configuration-library.html index 1378455c..20b029a6 100644 --- a/doc/model_google_pay_configuration/model_google_pay_configuration-library.html +++ b/doc/model_google_pay_configuration/model_google_pay_configuration-library.html @@ -1,10 +1,10 @@ - - + + -

            New URL

            +

            New URL

            \ No newline at end of file diff --git a/doc/model_language_language/Language.html b/doc/model_language_language/Language.html index fbc7d771..f1562037 100644 --- a/doc/model_language_language/Language.html +++ b/doc/model_language_language/Language.html @@ -25,24 +25,21 @@ menu
            Language
            -
            - -
            +
            Constants @@ -281,7 +278,7 @@
            language library
            flutter_tpay - 1.2.1 + 1.2.8
            diff --git a/doc/model_language_language/Language/values-constant.html b/doc/model_language_language/Language/values-constant.html index 2f9a5d5b..cc8ae80d 100644 --- a/doc/model_language_language/Language/values-constant.html +++ b/doc/model_language_language/Language/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
            - -
            +
            values constant @@ -96,7 +93,7 @@
            Language enum
            flutter_tpay - 1.2.1 + 1.2.8
            diff --git a/doc/model_language_language/index.html b/doc/model_language_language/index.html index 7a55c2d1..e5384bb4 100644 --- a/doc/model_language_language/index.html +++ b/doc/model_language_language/index.html @@ -31,17 +31,14 @@ -
            - -
            +
            Enums
            flutter_tpay package
            1. Libraries
            2. -
            3. model/apple_pay_configuration
            4. -
            5. model/certificate_pinning_configuration
            6. -
            7. model/google_pay_configuration
            8. -
            9. model/language/language
            10. -
            11. model/language/languages
            12. -
            13. model/language/localized_string
            14. -
            15. model/merchant/merchant
            16. -
            17. model/merchant/merchant_authorization
            18. -
            19. model/merchant/merchant_details
            20. -
            21. model/payer/payer
            22. -
            23. model/payer/payer_address
            24. -
            25. model/payer/payer_context
            26. -
            27. model/paymentChannel/payment_channel
            28. -
            29. model/paymentChannel/payment_constraint
            30. -
            31. model/paymentChannel/payment_group
            32. -
            33. model/paymentMethod/automatic_payment_methods
            34. -
            35. model/paymentMethod/blik_alias
            36. -
            37. model/paymentMethod/credit_card_brand
            38. -
            39. model/paymentMethod/digital_wallet
            40. -
            41. model/paymentMethod/installment_payment
            42. -
            43. model/paymentMethod/payment_method
            44. -
            45. model/paymentMethod/payment_methods
            46. -
            47. model/paymentMethod/tokenized_card
            48. -
            49. model/result/google_pay_configure_result
            50. -
            51. model/result/google_pay_open_result
            52. -
            53. model/result/payment_channels_result
            54. -
            55. model/result/result
            56. -
            57. model/result/screenless_result
            58. -
            59. model/screenless/ambiguous_alias
            60. -
            61. model/screenless/ambiguous_blik_payment
            62. -
            63. model/screenless/apple_pay_payment
            64. -
            65. model/screenless/blik_payment
            66. -
            67. model/screenless/callbacks
            68. -
            69. model/screenless/credit_card
            70. -
            71. model/screenless/credit_card_config
            72. -
            73. model/screenless/credit_card_payment
            74. -
            75. model/screenless/expiration_date
            76. -
            77. model/screenless/google_pay_environment
            78. -
            79. model/screenless/google_pay_payment
            80. -
            81. model/screenless/google_pay_utils_configuration
            82. -
            83. model/screenless/notifications
            84. -
            85. model/screenless/pay_po_payment
            86. -
            87. model/screenless/payment_details
            88. -
            89. model/screenless/raty_pekao_payment
            90. -
            91. model/screenless/recursive
            92. -
            93. model/screenless/redirects
            94. -
            95. model/screenless/screenless_payment
            96. -
            97. model/screenless/transfer_method
            98. -
            99. model/screenless/transfer_payment
            100. -
            101. model/tokenization/tokenization
            102. -
            103. model/tpay_configuration
            104. -
            105. model/tpay_environment
            106. -
            107. model/transaction/single_transaction
            108. -
            109. model/transaction/token_payment
            110. -
            111. model/transaction/transaction
            112. -
            113. model/wallet_configuration
            114. -
            115. tpay_button
            116. -
            117. tpay_method_channel
            118. -
            119. tpay_platform_interface
            120. -
            121. util/google_pay_configuration_util
            122. -
            123. util/google_pay_util
            124. -
            125. util/payment_channels_util
            126. -
            127. util/result_util
            128. -
            129. util/screenless_result_util
            130. +
            131. model/apple_pay_configuration
            132. +
            133. model/certificate_pinning_configuration
            134. +
            135. model/google_pay_configuration
            136. +
            137. model/language/language
            138. +
            139. model/language/languages
            140. +
            141. model/language/localized_string
            142. +
            143. model/merchant/merchant
            144. +
            145. model/merchant/merchant_authorization
            146. +
            147. model/merchant/merchant_details
            148. +
            149. model/payer/payer
            150. +
            151. model/payer/payer_address
            152. +
            153. model/payer/payer_context
            154. +
            155. model/paymentChannel/payment_channel
            156. +
            157. model/paymentChannel/payment_constraint
            158. +
            159. model/paymentChannel/payment_group
            160. +
            161. model/paymentMethod/automatic_payment_methods
            162. +
            163. model/paymentMethod/blik_alias
            164. +
            165. model/paymentMethod/credit_card_brand
            166. +
            167. model/paymentMethod/digital_wallet
            168. +
            169. model/paymentMethod/installment_payment
            170. +
            171. model/paymentMethod/payment_method
            172. +
            173. model/paymentMethod/payment_methods
            174. +
            175. model/paymentMethod/tokenized_card
            176. +
            177. model/result/google_pay_configure_result
            178. +
            179. model/result/google_pay_open_result
            180. +
            181. model/result/payment_channels_result
            182. +
            183. model/result/result
            184. +
            185. model/result/screenless_result
            186. +
            187. model/screenless/ambiguous_alias
            188. +
            189. model/screenless/ambiguous_blik_payment
            190. +
            191. model/screenless/apple_pay_payment
            192. +
            193. model/screenless/blik_payment
            194. +
            195. model/screenless/callbacks
            196. +
            197. model/screenless/credit_card
            198. +
            199. model/screenless/credit_card_config
            200. +
            201. model/screenless/credit_card_payment
            202. +
            203. model/screenless/expiration_date
            204. +
            205. model/screenless/google_pay_environment
            206. +
            207. model/screenless/google_pay_payment
            208. +
            209. model/screenless/google_pay_utils_configuration
            210. +
            211. model/screenless/notifications
            212. +
            213. model/screenless/pay_po_payment
            214. +
            215. model/screenless/payment_details
            216. +
            217. model/screenless/raty_pekao_payment
            218. +
            219. model/screenless/recursive
            220. +
            221. model/screenless/redirects
            222. +
            223. model/screenless/screenless_payment
            224. +
            225. model/screenless/transfer_method
            226. +
            227. model/screenless/transfer_payment
            228. +
            229. model/tokenization/tokenization
            230. +
            231. model/tpay_configuration
            232. +
            233. model/tpay_environment
            234. +
            235. model/transaction/single_transaction
            236. +
            237. model/transaction/token_payment
            238. +
            239. model/transaction/transaction
            240. +
            241. model/wallet_configuration
            242. +
            243. tpay_button
            244. +
            245. tpay_method_channel
            246. +
            247. tpay_platform_interface
            248. +
            249. util/google_pay_configuration_util
            250. +
            251. util/google_pay_util
            252. +
            253. util/payment_channels_util
            254. +
            255. util/result_util
            256. +
            257. util/screenless_result_util
            @@ -176,7 +173,7 @@
            language library
            flutter_tpay - 1.2.1 + 1.2.8
            diff --git a/doc/model_language_language/model_language_language-library-sidebar.html b/doc/model_language_language/model_language_language-library-sidebar.html index 62fb9a6c..d308b114 100644 --- a/doc/model_language_language/model_language_language-library-sidebar.html +++ b/doc/model_language_language/model_language_language-library-sidebar.html @@ -1,6 +1,6 @@
              -
            1. Enums
            2. +
            3. Enums
            4. Language
            5. diff --git a/doc/model_language_language/model_language_language-library.html b/doc/model_language_language/model_language_language-library.html index 12f812a1..096c205e 100644 --- a/doc/model_language_language/model_language_language-library.html +++ b/doc/model_language_language/model_language_language-library.html @@ -1,10 +1,10 @@ - - + + -

              New URL

              +

              New URL

              \ No newline at end of file diff --git a/doc/model_language_languages/Languages-class-sidebar.html b/doc/model_language_languages/Languages-class-sidebar.html index 077ac3d5..bebcd87f 100644 --- a/doc/model_language_languages/Languages-class-sidebar.html +++ b/doc/model_language_languages/Languages-class-sidebar.html @@ -1,7 +1,7 @@
              1. Constructors
              2. -
              3. Languages
              4. +
              5. new
              6. fromJson
              7. diff --git a/doc/model_language_languages/Languages-class.html b/doc/model_language_languages/Languages-class.html index 010f1923..922d7e84 100644 --- a/doc/model_language_languages/Languages-class.html +++ b/doc/model_language_languages/Languages-class.html @@ -25,24 +25,21 @@ menu
                Languages
                -
                - -
                +
                Languages class
                Annotations
                @@ -88,7 +85,7 @@

                Languages class

                Constructors

                -
                +
                Languages({required Language preferredLanguage, required List<Language> supportedLanguages})
                @@ -242,7 +239,7 @@

                Operators

                @@ -255,7 +252,7 @@
                languages library
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/Languages/Languages.fromJson.html b/doc/model_language_languages/Languages/Languages.fromJson.html index 15cc1f81..c10def1e 100644 --- a/doc/model_language_languages/Languages/Languages.fromJson.html +++ b/doc/model_language_languages/Languages/Languages.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                - -
                +
                Implementation

                @@ -94,7 +91,7 @@
                Languages class
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/Languages/Languages.html b/doc/model_language_languages/Languages/Languages.html index 2c91cd9e..7d20e8aa 100644 --- a/doc/model_language_languages/Languages/Languages.html +++ b/doc/model_language_languages/Languages/Languages.html @@ -4,8 +4,8 @@ - - Languages constructor - Languages - languages library - Dart API + + Languages.new constructor - Languages - languages library - Dart API @@ -25,25 +25,22 @@ menu -
                Languages
                +
                Languages.new
                -
                - -
                +
                Implementation
                Languages class
                @@ -95,7 +92,7 @@
                Languages class
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/Languages/preferredLanguage.html b/doc/model_language_languages/Languages/preferredLanguage.html index 9b3675e0..b5bfc48e 100644 --- a/doc/model_language_languages/Languages/preferredLanguage.html +++ b/doc/model_language_languages/Languages/preferredLanguage.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                - -
                +
                Implementation @@ -97,7 +94,7 @@
                Languages class
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/Languages/supportedLanguages.html b/doc/model_language_languages/Languages/supportedLanguages.html index 181cebaf..02b9dd66 100644 --- a/doc/model_language_languages/Languages/supportedLanguages.html +++ b/doc/model_language_languages/Languages/supportedLanguages.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                - -
                +
                Implementation @@ -97,7 +94,7 @@
                Languages class
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/Languages/toJson.html b/doc/model_language_languages/Languages/toJson.html index 92056414..1ba32785 100644 --- a/doc/model_language_languages/Languages/toJson.html +++ b/doc/model_language_languages/Languages/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                - -
                +
                Implementation @@ -97,7 +94,7 @@
                Languages class
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/index.html b/doc/model_language_languages/index.html index 52485680..c43917d0 100644 --- a/doc/model_language_languages/index.html +++ b/doc/model_language_languages/index.html @@ -31,17 +31,14 @@ -
                - -
                +
                Classes
                flutter_tpay package
                1. Libraries
                2. -
                3. model/apple_pay_configuration
                4. -
                5. model/certificate_pinning_configuration
                6. -
                7. model/google_pay_configuration
                8. -
                9. model/language/language
                10. -
                11. model/language/languages
                12. -
                13. model/language/localized_string
                14. -
                15. model/merchant/merchant
                16. -
                17. model/merchant/merchant_authorization
                18. -
                19. model/merchant/merchant_details
                20. -
                21. model/payer/payer
                22. -
                23. model/payer/payer_address
                24. -
                25. model/payer/payer_context
                26. -
                27. model/paymentChannel/payment_channel
                28. -
                29. model/paymentChannel/payment_constraint
                30. -
                31. model/paymentChannel/payment_group
                32. -
                33. model/paymentMethod/automatic_payment_methods
                34. -
                35. model/paymentMethod/blik_alias
                36. -
                37. model/paymentMethod/credit_card_brand
                38. -
                39. model/paymentMethod/digital_wallet
                40. -
                41. model/paymentMethod/installment_payment
                42. -
                43. model/paymentMethod/payment_method
                44. -
                45. model/paymentMethod/payment_methods
                46. -
                47. model/paymentMethod/tokenized_card
                48. -
                49. model/result/google_pay_configure_result
                50. -
                51. model/result/google_pay_open_result
                52. -
                53. model/result/payment_channels_result
                54. -
                55. model/result/result
                56. -
                57. model/result/screenless_result
                58. -
                59. model/screenless/ambiguous_alias
                60. -
                61. model/screenless/ambiguous_blik_payment
                62. -
                63. model/screenless/apple_pay_payment
                64. -
                65. model/screenless/blik_payment
                66. -
                67. model/screenless/callbacks
                68. -
                69. model/screenless/credit_card
                70. -
                71. model/screenless/credit_card_config
                72. -
                73. model/screenless/credit_card_payment
                74. -
                75. model/screenless/expiration_date
                76. -
                77. model/screenless/google_pay_environment
                78. -
                79. model/screenless/google_pay_payment
                80. -
                81. model/screenless/google_pay_utils_configuration
                82. -
                83. model/screenless/notifications
                84. -
                85. model/screenless/pay_po_payment
                86. -
                87. model/screenless/payment_details
                88. -
                89. model/screenless/raty_pekao_payment
                90. -
                91. model/screenless/recursive
                92. -
                93. model/screenless/redirects
                94. -
                95. model/screenless/screenless_payment
                96. -
                97. model/screenless/transfer_method
                98. -
                99. model/screenless/transfer_payment
                100. -
                101. model/tokenization/tokenization
                102. -
                103. model/tpay_configuration
                104. -
                105. model/tpay_environment
                106. -
                107. model/transaction/single_transaction
                108. -
                109. model/transaction/token_payment
                110. -
                111. model/transaction/transaction
                112. -
                113. model/wallet_configuration
                114. -
                115. tpay_button
                116. -
                117. tpay_method_channel
                118. -
                119. tpay_platform_interface
                120. -
                121. util/google_pay_configuration_util
                122. -
                123. util/google_pay_util
                124. -
                125. util/payment_channels_util
                126. -
                127. util/result_util
                128. -
                129. util/screenless_result_util
                130. +
                131. model/apple_pay_configuration
                132. +
                133. model/certificate_pinning_configuration
                134. +
                135. model/google_pay_configuration
                136. +
                137. model/language/language
                138. +
                139. model/language/languages
                140. +
                141. model/language/localized_string
                142. +
                143. model/merchant/merchant
                144. +
                145. model/merchant/merchant_authorization
                146. +
                147. model/merchant/merchant_details
                148. +
                149. model/payer/payer
                150. +
                151. model/payer/payer_address
                152. +
                153. model/payer/payer_context
                154. +
                155. model/paymentChannel/payment_channel
                156. +
                157. model/paymentChannel/payment_constraint
                158. +
                159. model/paymentChannel/payment_group
                160. +
                161. model/paymentMethod/automatic_payment_methods
                162. +
                163. model/paymentMethod/blik_alias
                164. +
                165. model/paymentMethod/credit_card_brand
                166. +
                167. model/paymentMethod/digital_wallet
                168. +
                169. model/paymentMethod/installment_payment
                170. +
                171. model/paymentMethod/payment_method
                172. +
                173. model/paymentMethod/payment_methods
                174. +
                175. model/paymentMethod/tokenized_card
                176. +
                177. model/result/google_pay_configure_result
                178. +
                179. model/result/google_pay_open_result
                180. +
                181. model/result/payment_channels_result
                182. +
                183. model/result/result
                184. +
                185. model/result/screenless_result
                186. +
                187. model/screenless/ambiguous_alias
                188. +
                189. model/screenless/ambiguous_blik_payment
                190. +
                191. model/screenless/apple_pay_payment
                192. +
                193. model/screenless/blik_payment
                194. +
                195. model/screenless/callbacks
                196. +
                197. model/screenless/credit_card
                198. +
                199. model/screenless/credit_card_config
                200. +
                201. model/screenless/credit_card_payment
                202. +
                203. model/screenless/expiration_date
                204. +
                205. model/screenless/google_pay_environment
                206. +
                207. model/screenless/google_pay_payment
                208. +
                209. model/screenless/google_pay_utils_configuration
                210. +
                211. model/screenless/notifications
                212. +
                213. model/screenless/pay_po_payment
                214. +
                215. model/screenless/payment_details
                216. +
                217. model/screenless/raty_pekao_payment
                218. +
                219. model/screenless/recursive
                220. +
                221. model/screenless/redirects
                222. +
                223. model/screenless/screenless_payment
                224. +
                225. model/screenless/transfer_method
                226. +
                227. model/screenless/transfer_payment
                228. +
                229. model/tokenization/tokenization
                230. +
                231. model/tpay_configuration
                232. +
                233. model/tpay_environment
                234. +
                235. model/transaction/single_transaction
                236. +
                237. model/transaction/token_payment
                238. +
                239. model/transaction/transaction
                240. +
                241. model/wallet_configuration
                242. +
                243. tpay_button
                244. +
                245. tpay_method_channel
                246. +
                247. tpay_platform_interface
                248. +
                249. util/google_pay_configuration_util
                250. +
                251. util/google_pay_util
                252. +
                253. util/payment_channels_util
                254. +
                255. util/result_util
                256. +
                257. util/screenless_result_util
                @@ -178,7 +175,7 @@
                languages library
                flutter_tpay - 1.2.1 + 1.2.8
                diff --git a/doc/model_language_languages/model_language_languages-library-sidebar.html b/doc/model_language_languages/model_language_languages-library-sidebar.html index 96007cab..ed79d8de 100644 --- a/doc/model_language_languages/model_language_languages-library-sidebar.html +++ b/doc/model_language_languages/model_language_languages-library-sidebar.html @@ -1,5 +1,5 @@
                  -
                1. Classes
                2. +
                3. Classes
                4. Languages
                5. diff --git a/doc/model_language_languages/model_language_languages-library.html b/doc/model_language_languages/model_language_languages-library.html index d83f08f2..840725ca 100644 --- a/doc/model_language_languages/model_language_languages-library.html +++ b/doc/model_language_languages/model_language_languages-library.html @@ -1,10 +1,10 @@ - - + + -

                  New URL

                  +

                  New URL

                  \ No newline at end of file diff --git a/doc/model_language_localized_string/LocalizedString-class-sidebar.html b/doc/model_language_localized_string/LocalizedString-class-sidebar.html index e9d9877e..3ec3f8c4 100644 --- a/doc/model_language_localized_string/LocalizedString-class-sidebar.html +++ b/doc/model_language_localized_string/LocalizedString-class-sidebar.html @@ -1,7 +1,7 @@
                  1. Constructors
                  2. -
                  3. LocalizedString
                  4. +
                  5. new
                  6. fromJson
                  7. diff --git a/doc/model_language_localized_string/LocalizedString-class.html b/doc/model_language_localized_string/LocalizedString-class.html index 4a066ccf..e935dc35 100644 --- a/doc/model_language_localized_string/LocalizedString-class.html +++ b/doc/model_language_localized_string/LocalizedString-class.html @@ -25,24 +25,21 @@ menu
                    LocalizedString
                    -
                    - -
                    +
                    LocalizedString class
                    Annotations
                    @@ -86,7 +83,7 @@

                    LocalizedString class

                    Constructors

                    -
                    +
                    LocalizedString({required Language language, required String value})
                    @@ -240,7 +237,7 @@

                    Operators

                    @@ -253,7 +250,7 @@
                    localized_string library
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/LocalizedString/LocalizedString.fromJson.html b/doc/model_language_localized_string/LocalizedString/LocalizedString.fromJson.html index 775fda6f..af4c2065 100644 --- a/doc/model_language_localized_string/LocalizedString/LocalizedString.fromJson.html +++ b/doc/model_language_localized_string/LocalizedString/LocalizedString.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                    - -
                    +
                    Implementation

                    @@ -94,7 +91,7 @@
                    LocalizedString class
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/LocalizedString/LocalizedString.html b/doc/model_language_localized_string/LocalizedString/LocalizedString.html index e90301be..e1759a62 100644 --- a/doc/model_language_localized_string/LocalizedString/LocalizedString.html +++ b/doc/model_language_localized_string/LocalizedString/LocalizedString.html @@ -4,8 +4,8 @@ - - LocalizedString constructor - LocalizedString - localized_string library - Dart API + + LocalizedString.new constructor - LocalizedString - localized_string library - Dart API @@ -25,25 +25,22 @@ menu -
                    LocalizedString
                    +
                    LocalizedString.new
                    -
                    - -
                    +
                    Implementation
                    LocalizedString class
                    @@ -95,7 +92,7 @@
                    LocalizedString class
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/LocalizedString/language.html b/doc/model_language_localized_string/LocalizedString/language.html index b938e840..8da0a96c 100644 --- a/doc/model_language_localized_string/LocalizedString/language.html +++ b/doc/model_language_localized_string/LocalizedString/language.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                    - -
                    +
                    Implementation @@ -97,7 +94,7 @@
                    LocalizedString class
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/LocalizedString/toJson.html b/doc/model_language_localized_string/LocalizedString/toJson.html index ff90d04c..3390a651 100644 --- a/doc/model_language_localized_string/LocalizedString/toJson.html +++ b/doc/model_language_localized_string/LocalizedString/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                    - -
                    +
                    Implementation @@ -97,7 +94,7 @@
                    LocalizedString class
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/LocalizedString/value.html b/doc/model_language_localized_string/LocalizedString/value.html index c8705b60..bdc6f906 100644 --- a/doc/model_language_localized_string/LocalizedString/value.html +++ b/doc/model_language_localized_string/LocalizedString/value.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                    - -
                    +
                    Implementation @@ -97,7 +94,7 @@
                    LocalizedString class
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/index.html b/doc/model_language_localized_string/index.html index 91abf624..3e1d070d 100644 --- a/doc/model_language_localized_string/index.html +++ b/doc/model_language_localized_string/index.html @@ -31,17 +31,14 @@ -
                    - -
                    +
                    Classes
                    flutter_tpay package
                    1. Libraries
                    2. -
                    3. model/apple_pay_configuration
                    4. -
                    5. model/certificate_pinning_configuration
                    6. -
                    7. model/google_pay_configuration
                    8. -
                    9. model/language/language
                    10. -
                    11. model/language/languages
                    12. -
                    13. model/language/localized_string
                    14. -
                    15. model/merchant/merchant
                    16. -
                    17. model/merchant/merchant_authorization
                    18. -
                    19. model/merchant/merchant_details
                    20. -
                    21. model/payer/payer
                    22. -
                    23. model/payer/payer_address
                    24. -
                    25. model/payer/payer_context
                    26. -
                    27. model/paymentChannel/payment_channel
                    28. -
                    29. model/paymentChannel/payment_constraint
                    30. -
                    31. model/paymentChannel/payment_group
                    32. -
                    33. model/paymentMethod/automatic_payment_methods
                    34. -
                    35. model/paymentMethod/blik_alias
                    36. -
                    37. model/paymentMethod/credit_card_brand
                    38. -
                    39. model/paymentMethod/digital_wallet
                    40. -
                    41. model/paymentMethod/installment_payment
                    42. -
                    43. model/paymentMethod/payment_method
                    44. -
                    45. model/paymentMethod/payment_methods
                    46. -
                    47. model/paymentMethod/tokenized_card
                    48. -
                    49. model/result/google_pay_configure_result
                    50. -
                    51. model/result/google_pay_open_result
                    52. -
                    53. model/result/payment_channels_result
                    54. -
                    55. model/result/result
                    56. -
                    57. model/result/screenless_result
                    58. -
                    59. model/screenless/ambiguous_alias
                    60. -
                    61. model/screenless/ambiguous_blik_payment
                    62. -
                    63. model/screenless/apple_pay_payment
                    64. -
                    65. model/screenless/blik_payment
                    66. -
                    67. model/screenless/callbacks
                    68. -
                    69. model/screenless/credit_card
                    70. -
                    71. model/screenless/credit_card_config
                    72. -
                    73. model/screenless/credit_card_payment
                    74. -
                    75. model/screenless/expiration_date
                    76. -
                    77. model/screenless/google_pay_environment
                    78. -
                    79. model/screenless/google_pay_payment
                    80. -
                    81. model/screenless/google_pay_utils_configuration
                    82. -
                    83. model/screenless/notifications
                    84. -
                    85. model/screenless/pay_po_payment
                    86. -
                    87. model/screenless/payment_details
                    88. -
                    89. model/screenless/raty_pekao_payment
                    90. -
                    91. model/screenless/recursive
                    92. -
                    93. model/screenless/redirects
                    94. -
                    95. model/screenless/screenless_payment
                    96. -
                    97. model/screenless/transfer_method
                    98. -
                    99. model/screenless/transfer_payment
                    100. -
                    101. model/tokenization/tokenization
                    102. -
                    103. model/tpay_configuration
                    104. -
                    105. model/tpay_environment
                    106. -
                    107. model/transaction/single_transaction
                    108. -
                    109. model/transaction/token_payment
                    110. -
                    111. model/transaction/transaction
                    112. -
                    113. model/wallet_configuration
                    114. -
                    115. tpay_button
                    116. -
                    117. tpay_method_channel
                    118. -
                    119. tpay_platform_interface
                    120. -
                    121. util/google_pay_configuration_util
                    122. -
                    123. util/google_pay_util
                    124. -
                    125. util/payment_channels_util
                    126. -
                    127. util/result_util
                    128. -
                    129. util/screenless_result_util
                    130. +
                    131. model/apple_pay_configuration
                    132. +
                    133. model/certificate_pinning_configuration
                    134. +
                    135. model/google_pay_configuration
                    136. +
                    137. model/language/language
                    138. +
                    139. model/language/languages
                    140. +
                    141. model/language/localized_string
                    142. +
                    143. model/merchant/merchant
                    144. +
                    145. model/merchant/merchant_authorization
                    146. +
                    147. model/merchant/merchant_details
                    148. +
                    149. model/payer/payer
                    150. +
                    151. model/payer/payer_address
                    152. +
                    153. model/payer/payer_context
                    154. +
                    155. model/paymentChannel/payment_channel
                    156. +
                    157. model/paymentChannel/payment_constraint
                    158. +
                    159. model/paymentChannel/payment_group
                    160. +
                    161. model/paymentMethod/automatic_payment_methods
                    162. +
                    163. model/paymentMethod/blik_alias
                    164. +
                    165. model/paymentMethod/credit_card_brand
                    166. +
                    167. model/paymentMethod/digital_wallet
                    168. +
                    169. model/paymentMethod/installment_payment
                    170. +
                    171. model/paymentMethod/payment_method
                    172. +
                    173. model/paymentMethod/payment_methods
                    174. +
                    175. model/paymentMethod/tokenized_card
                    176. +
                    177. model/result/google_pay_configure_result
                    178. +
                    179. model/result/google_pay_open_result
                    180. +
                    181. model/result/payment_channels_result
                    182. +
                    183. model/result/result
                    184. +
                    185. model/result/screenless_result
                    186. +
                    187. model/screenless/ambiguous_alias
                    188. +
                    189. model/screenless/ambiguous_blik_payment
                    190. +
                    191. model/screenless/apple_pay_payment
                    192. +
                    193. model/screenless/blik_payment
                    194. +
                    195. model/screenless/callbacks
                    196. +
                    197. model/screenless/credit_card
                    198. +
                    199. model/screenless/credit_card_config
                    200. +
                    201. model/screenless/credit_card_payment
                    202. +
                    203. model/screenless/expiration_date
                    204. +
                    205. model/screenless/google_pay_environment
                    206. +
                    207. model/screenless/google_pay_payment
                    208. +
                    209. model/screenless/google_pay_utils_configuration
                    210. +
                    211. model/screenless/notifications
                    212. +
                    213. model/screenless/pay_po_payment
                    214. +
                    215. model/screenless/payment_details
                    216. +
                    217. model/screenless/raty_pekao_payment
                    218. +
                    219. model/screenless/recursive
                    220. +
                    221. model/screenless/redirects
                    222. +
                    223. model/screenless/screenless_payment
                    224. +
                    225. model/screenless/transfer_method
                    226. +
                    227. model/screenless/transfer_payment
                    228. +
                    229. model/tokenization/tokenization
                    230. +
                    231. model/tpay_configuration
                    232. +
                    233. model/tpay_environment
                    234. +
                    235. model/transaction/single_transaction
                    236. +
                    237. model/transaction/token_payment
                    238. +
                    239. model/transaction/transaction
                    240. +
                    241. model/wallet_configuration
                    242. +
                    243. tpay_button
                    244. +
                    245. tpay_method_channel
                    246. +
                    247. tpay_platform_interface
                    248. +
                    249. util/google_pay_configuration_util
                    250. +
                    251. util/google_pay_util
                    252. +
                    253. util/payment_channels_util
                    254. +
                    255. util/result_util
                    256. +
                    257. util/screenless_result_util
                    @@ -176,7 +173,7 @@
                    localized_string library
                    flutter_tpay - 1.2.1 + 1.2.8
                    diff --git a/doc/model_language_localized_string/model_language_localized_string-library-sidebar.html b/doc/model_language_localized_string/model_language_localized_string-library-sidebar.html index e0de8826..4cda6ab8 100644 --- a/doc/model_language_localized_string/model_language_localized_string-library-sidebar.html +++ b/doc/model_language_localized_string/model_language_localized_string-library-sidebar.html @@ -1,5 +1,5 @@
                      -
                    1. Classes
                    2. +
                    3. Classes
                    4. LocalizedString
                    5. diff --git a/doc/model_language_localized_string/model_language_localized_string-library.html b/doc/model_language_localized_string/model_language_localized_string-library.html index 939f999f..4f4df9d4 100644 --- a/doc/model_language_localized_string/model_language_localized_string-library.html +++ b/doc/model_language_localized_string/model_language_localized_string-library.html @@ -1,10 +1,10 @@ - - + + -

                      New URL

                      +

                      New URL

                      \ No newline at end of file diff --git a/doc/model_merchant_merchant/Merchant-class-sidebar.html b/doc/model_merchant_merchant/Merchant-class-sidebar.html index efc8b76b..bd7ae1fa 100644 --- a/doc/model_merchant_merchant/Merchant-class-sidebar.html +++ b/doc/model_merchant_merchant/Merchant-class-sidebar.html @@ -1,7 +1,7 @@
                      1. Constructors
                      2. -
                      3. Merchant
                      4. +
                      5. new
                      6. fromJson
                      7. diff --git a/doc/model_merchant_merchant/Merchant-class.html b/doc/model_merchant_merchant/Merchant-class.html index 60eca55c..9699018c 100644 --- a/doc/model_merchant_merchant/Merchant-class.html +++ b/doc/model_merchant_merchant/Merchant-class.html @@ -25,24 +25,21 @@ menu
                        Merchant
                        -
                        - -
                        +
                        Merchant class
                        Annotations
                        @@ -93,7 +90,7 @@

                        Merchant class

                        Constructors

                        -
                        +
                        Merchant({required MerchantAuthorization authorization, required TpayEnvironment environment, required CertificatePinningConfiguration certificatePinningConfiguration, required String blikAliasToRegister, required WalletConfiguration? walletConfiguration})
                        @@ -283,7 +280,7 @@

                        Operators

                        @@ -296,7 +293,7 @@
                        merchant library
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/Merchant.fromJson.html b/doc/model_merchant_merchant/Merchant/Merchant.fromJson.html index ecdbbc8c..a2e4e407 100644 --- a/doc/model_merchant_merchant/Merchant/Merchant.fromJson.html +++ b/doc/model_merchant_merchant/Merchant/Merchant.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation

                        @@ -94,7 +91,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/Merchant.html b/doc/model_merchant_merchant/Merchant/Merchant.html index 5eda3136..7199ee61 100644 --- a/doc/model_merchant_merchant/Merchant/Merchant.html +++ b/doc/model_merchant_merchant/Merchant/Merchant.html @@ -4,8 +4,8 @@ - - Merchant constructor - Merchant - merchant library - Dart API + + Merchant.new constructor - Merchant - merchant library - Dart API @@ -25,25 +25,22 @@ menu -
                        Merchant
                        +
                        Merchant.new
                        -
                        - -
                        +
                        Implementation
                        Merchant class
                        @@ -104,7 +101,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/authorization.html b/doc/model_merchant_merchant/Merchant/authorization.html index aea9ded5..eae3b5e1 100644 --- a/doc/model_merchant_merchant/Merchant/authorization.html +++ b/doc/model_merchant_merchant/Merchant/authorization.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation @@ -97,7 +94,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/blikAliasToRegister.html b/doc/model_merchant_merchant/Merchant/blikAliasToRegister.html index 0b4e98e9..cbc8600e 100644 --- a/doc/model_merchant_merchant/Merchant/blikAliasToRegister.html +++ b/doc/model_merchant_merchant/Merchant/blikAliasToRegister.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation @@ -97,7 +94,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/certificatePinningConfiguration.html b/doc/model_merchant_merchant/Merchant/certificatePinningConfiguration.html index fd1f2183..e5cb6c30 100644 --- a/doc/model_merchant_merchant/Merchant/certificatePinningConfiguration.html +++ b/doc/model_merchant_merchant/Merchant/certificatePinningConfiguration.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation @@ -97,7 +94,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/environment.html b/doc/model_merchant_merchant/Merchant/environment.html index 1dccb26b..f9cc2445 100644 --- a/doc/model_merchant_merchant/Merchant/environment.html +++ b/doc/model_merchant_merchant/Merchant/environment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation @@ -97,7 +94,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/toJson.html b/doc/model_merchant_merchant/Merchant/toJson.html index 536d8fb0..0f2660b8 100644 --- a/doc/model_merchant_merchant/Merchant/toJson.html +++ b/doc/model_merchant_merchant/Merchant/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation @@ -97,7 +94,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/Merchant/walletConfiguration.html b/doc/model_merchant_merchant/Merchant/walletConfiguration.html index dae47d83..918bf90a 100644 --- a/doc/model_merchant_merchant/Merchant/walletConfiguration.html +++ b/doc/model_merchant_merchant/Merchant/walletConfiguration.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                        - -
                        +
                        Implementation @@ -97,7 +94,7 @@
                        Merchant class
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/index.html b/doc/model_merchant_merchant/index.html index 6af95a0f..1f6f98c6 100644 --- a/doc/model_merchant_merchant/index.html +++ b/doc/model_merchant_merchant/index.html @@ -31,17 +31,14 @@ -
                        - -
                        +
                        Classes
                        flutter_tpay package
                        1. Libraries
                        2. -
                        3. model/apple_pay_configuration
                        4. -
                        5. model/certificate_pinning_configuration
                        6. -
                        7. model/google_pay_configuration
                        8. -
                        9. model/language/language
                        10. -
                        11. model/language/languages
                        12. -
                        13. model/language/localized_string
                        14. -
                        15. model/merchant/merchant
                        16. -
                        17. model/merchant/merchant_authorization
                        18. -
                        19. model/merchant/merchant_details
                        20. -
                        21. model/payer/payer
                        22. -
                        23. model/payer/payer_address
                        24. -
                        25. model/payer/payer_context
                        26. -
                        27. model/paymentChannel/payment_channel
                        28. -
                        29. model/paymentChannel/payment_constraint
                        30. -
                        31. model/paymentChannel/payment_group
                        32. -
                        33. model/paymentMethod/automatic_payment_methods
                        34. -
                        35. model/paymentMethod/blik_alias
                        36. -
                        37. model/paymentMethod/credit_card_brand
                        38. -
                        39. model/paymentMethod/digital_wallet
                        40. -
                        41. model/paymentMethod/installment_payment
                        42. -
                        43. model/paymentMethod/payment_method
                        44. -
                        45. model/paymentMethod/payment_methods
                        46. -
                        47. model/paymentMethod/tokenized_card
                        48. -
                        49. model/result/google_pay_configure_result
                        50. -
                        51. model/result/google_pay_open_result
                        52. -
                        53. model/result/payment_channels_result
                        54. -
                        55. model/result/result
                        56. -
                        57. model/result/screenless_result
                        58. -
                        59. model/screenless/ambiguous_alias
                        60. -
                        61. model/screenless/ambiguous_blik_payment
                        62. -
                        63. model/screenless/apple_pay_payment
                        64. -
                        65. model/screenless/blik_payment
                        66. -
                        67. model/screenless/callbacks
                        68. -
                        69. model/screenless/credit_card
                        70. -
                        71. model/screenless/credit_card_config
                        72. -
                        73. model/screenless/credit_card_payment
                        74. -
                        75. model/screenless/expiration_date
                        76. -
                        77. model/screenless/google_pay_environment
                        78. -
                        79. model/screenless/google_pay_payment
                        80. -
                        81. model/screenless/google_pay_utils_configuration
                        82. -
                        83. model/screenless/notifications
                        84. -
                        85. model/screenless/pay_po_payment
                        86. -
                        87. model/screenless/payment_details
                        88. -
                        89. model/screenless/raty_pekao_payment
                        90. -
                        91. model/screenless/recursive
                        92. -
                        93. model/screenless/redirects
                        94. -
                        95. model/screenless/screenless_payment
                        96. -
                        97. model/screenless/transfer_method
                        98. -
                        99. model/screenless/transfer_payment
                        100. -
                        101. model/tokenization/tokenization
                        102. -
                        103. model/tpay_configuration
                        104. -
                        105. model/tpay_environment
                        106. -
                        107. model/transaction/single_transaction
                        108. -
                        109. model/transaction/token_payment
                        110. -
                        111. model/transaction/transaction
                        112. -
                        113. model/wallet_configuration
                        114. -
                        115. tpay_button
                        116. -
                        117. tpay_method_channel
                        118. -
                        119. tpay_platform_interface
                        120. -
                        121. util/google_pay_configuration_util
                        122. -
                        123. util/google_pay_util
                        124. -
                        125. util/payment_channels_util
                        126. -
                        127. util/result_util
                        128. -
                        129. util/screenless_result_util
                        130. +
                        131. model/apple_pay_configuration
                        132. +
                        133. model/certificate_pinning_configuration
                        134. +
                        135. model/google_pay_configuration
                        136. +
                        137. model/language/language
                        138. +
                        139. model/language/languages
                        140. +
                        141. model/language/localized_string
                        142. +
                        143. model/merchant/merchant
                        144. +
                        145. model/merchant/merchant_authorization
                        146. +
                        147. model/merchant/merchant_details
                        148. +
                        149. model/payer/payer
                        150. +
                        151. model/payer/payer_address
                        152. +
                        153. model/payer/payer_context
                        154. +
                        155. model/paymentChannel/payment_channel
                        156. +
                        157. model/paymentChannel/payment_constraint
                        158. +
                        159. model/paymentChannel/payment_group
                        160. +
                        161. model/paymentMethod/automatic_payment_methods
                        162. +
                        163. model/paymentMethod/blik_alias
                        164. +
                        165. model/paymentMethod/credit_card_brand
                        166. +
                        167. model/paymentMethod/digital_wallet
                        168. +
                        169. model/paymentMethod/installment_payment
                        170. +
                        171. model/paymentMethod/payment_method
                        172. +
                        173. model/paymentMethod/payment_methods
                        174. +
                        175. model/paymentMethod/tokenized_card
                        176. +
                        177. model/result/google_pay_configure_result
                        178. +
                        179. model/result/google_pay_open_result
                        180. +
                        181. model/result/payment_channels_result
                        182. +
                        183. model/result/result
                        184. +
                        185. model/result/screenless_result
                        186. +
                        187. model/screenless/ambiguous_alias
                        188. +
                        189. model/screenless/ambiguous_blik_payment
                        190. +
                        191. model/screenless/apple_pay_payment
                        192. +
                        193. model/screenless/blik_payment
                        194. +
                        195. model/screenless/callbacks
                        196. +
                        197. model/screenless/credit_card
                        198. +
                        199. model/screenless/credit_card_config
                        200. +
                        201. model/screenless/credit_card_payment
                        202. +
                        203. model/screenless/expiration_date
                        204. +
                        205. model/screenless/google_pay_environment
                        206. +
                        207. model/screenless/google_pay_payment
                        208. +
                        209. model/screenless/google_pay_utils_configuration
                        210. +
                        211. model/screenless/notifications
                        212. +
                        213. model/screenless/pay_po_payment
                        214. +
                        215. model/screenless/payment_details
                        216. +
                        217. model/screenless/raty_pekao_payment
                        218. +
                        219. model/screenless/recursive
                        220. +
                        221. model/screenless/redirects
                        222. +
                        223. model/screenless/screenless_payment
                        224. +
                        225. model/screenless/transfer_method
                        226. +
                        227. model/screenless/transfer_payment
                        228. +
                        229. model/tokenization/tokenization
                        230. +
                        231. model/tpay_configuration
                        232. +
                        233. model/tpay_environment
                        234. +
                        235. model/transaction/single_transaction
                        236. +
                        237. model/transaction/token_payment
                        238. +
                        239. model/transaction/transaction
                        240. +
                        241. model/wallet_configuration
                        242. +
                        243. tpay_button
                        244. +
                        245. tpay_method_channel
                        246. +
                        247. tpay_platform_interface
                        248. +
                        249. util/google_pay_configuration_util
                        250. +
                        251. util/google_pay_util
                        252. +
                        253. util/payment_channels_util
                        254. +
                        255. util/result_util
                        256. +
                        257. util/screenless_result_util
                        @@ -176,7 +173,7 @@
                        merchant library
                        flutter_tpay - 1.2.1 + 1.2.8
                        diff --git a/doc/model_merchant_merchant/model_merchant_merchant-library-sidebar.html b/doc/model_merchant_merchant/model_merchant_merchant-library-sidebar.html index dee9f9fa..63e2a9fe 100644 --- a/doc/model_merchant_merchant/model_merchant_merchant-library-sidebar.html +++ b/doc/model_merchant_merchant/model_merchant_merchant-library-sidebar.html @@ -1,5 +1,5 @@
                          -
                        1. Classes
                        2. +
                        3. Classes
                        4. Merchant
                        5. diff --git a/doc/model_merchant_merchant/model_merchant_merchant-library.html b/doc/model_merchant_merchant/model_merchant_merchant-library.html index 1308f3dd..fbb33136 100644 --- a/doc/model_merchant_merchant/model_merchant_merchant-library.html +++ b/doc/model_merchant_merchant/model_merchant_merchant-library.html @@ -1,10 +1,10 @@ - - + + -

                          New URL

                          +

                          New URL

                          \ No newline at end of file diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization-class-sidebar.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization-class-sidebar.html index a2c12d47..b01cc07f 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization-class-sidebar.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization-class-sidebar.html @@ -1,7 +1,7 @@
                          1. Constructors
                          2. -
                          3. MerchantAuthorization
                          4. +
                          5. new
                          6. fromJson
                          7. diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization-class.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization-class.html index 733fe55e..d1401933 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization-class.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization-class.html @@ -25,24 +25,21 @@ menu
                            MerchantAuthorization
                            -
                            - -
                            +
                            MerchantAuthorization class
                            Annotations
                            @@ -86,7 +83,7 @@

                            MerchantAuthorization class

                            Constructors

                            -
                            +
                            MerchantAuthorization({required String clientId, required String clientSecret})
                            @@ -240,7 +237,7 @@

                            Operators

                            @@ -253,7 +250,7 @@
                            merchant_authorization library
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.fromJson.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.fromJson.html index 1a967022..9cfdf480 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.fromJson.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                            - -
                            +
                            Implementation

                            @@ -94,7 +91,7 @@
                            MerchantAuthorization class
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.html index 2e3e317c..79f61a06 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.html @@ -4,8 +4,8 @@ - - MerchantAuthorization constructor - MerchantAuthorization - merchant_authorization library - Dart API + + MerchantAuthorization.new constructor - MerchantAuthorization - merchant_authorization library - Dart API @@ -25,25 +25,22 @@ menu -
                            MerchantAuthorization
                            +
                            MerchantAuthorization.new
                            -
                            - -
                            +
                            Implementation
                            MerchantAuthorization class
                            @@ -98,7 +95,7 @@
                            MerchantAuthorization class
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientId.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientId.html index a2d98558..e2009baa 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientId.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                            - -
                            +
                            Implementation @@ -97,7 +94,7 @@
                            MerchantAuthorization class
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientSecret.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientSecret.html index d862750e..b54c9c15 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientSecret.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientSecret.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                            - -
                            +
                            Implementation @@ -97,7 +94,7 @@
                            MerchantAuthorization class
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/toJson.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/toJson.html index 5f198ba2..ea35d89b 100644 --- a/doc/model_merchant_merchant_authorization/MerchantAuthorization/toJson.html +++ b/doc/model_merchant_merchant_authorization/MerchantAuthorization/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                            - -
                            +
                            Implementation @@ -97,7 +94,7 @@
                            MerchantAuthorization class
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/index.html b/doc/model_merchant_merchant_authorization/index.html index 5518791b..4a69fa7c 100644 --- a/doc/model_merchant_merchant_authorization/index.html +++ b/doc/model_merchant_merchant_authorization/index.html @@ -31,17 +31,14 @@ -
                            - -
                            +
                            Classes
                            flutter_tpay package
                            1. Libraries
                            2. -
                            3. model/apple_pay_configuration
                            4. -
                            5. model/certificate_pinning_configuration
                            6. -
                            7. model/google_pay_configuration
                            8. -
                            9. model/language/language
                            10. -
                            11. model/language/languages
                            12. -
                            13. model/language/localized_string
                            14. -
                            15. model/merchant/merchant
                            16. -
                            17. model/merchant/merchant_authorization
                            18. -
                            19. model/merchant/merchant_details
                            20. -
                            21. model/payer/payer
                            22. -
                            23. model/payer/payer_address
                            24. -
                            25. model/payer/payer_context
                            26. -
                            27. model/paymentChannel/payment_channel
                            28. -
                            29. model/paymentChannel/payment_constraint
                            30. -
                            31. model/paymentChannel/payment_group
                            32. -
                            33. model/paymentMethod/automatic_payment_methods
                            34. -
                            35. model/paymentMethod/blik_alias
                            36. -
                            37. model/paymentMethod/credit_card_brand
                            38. -
                            39. model/paymentMethod/digital_wallet
                            40. -
                            41. model/paymentMethod/installment_payment
                            42. -
                            43. model/paymentMethod/payment_method
                            44. -
                            45. model/paymentMethod/payment_methods
                            46. -
                            47. model/paymentMethod/tokenized_card
                            48. -
                            49. model/result/google_pay_configure_result
                            50. -
                            51. model/result/google_pay_open_result
                            52. -
                            53. model/result/payment_channels_result
                            54. -
                            55. model/result/result
                            56. -
                            57. model/result/screenless_result
                            58. -
                            59. model/screenless/ambiguous_alias
                            60. -
                            61. model/screenless/ambiguous_blik_payment
                            62. -
                            63. model/screenless/apple_pay_payment
                            64. -
                            65. model/screenless/blik_payment
                            66. -
                            67. model/screenless/callbacks
                            68. -
                            69. model/screenless/credit_card
                            70. -
                            71. model/screenless/credit_card_config
                            72. -
                            73. model/screenless/credit_card_payment
                            74. -
                            75. model/screenless/expiration_date
                            76. -
                            77. model/screenless/google_pay_environment
                            78. -
                            79. model/screenless/google_pay_payment
                            80. -
                            81. model/screenless/google_pay_utils_configuration
                            82. -
                            83. model/screenless/notifications
                            84. -
                            85. model/screenless/pay_po_payment
                            86. -
                            87. model/screenless/payment_details
                            88. -
                            89. model/screenless/raty_pekao_payment
                            90. -
                            91. model/screenless/recursive
                            92. -
                            93. model/screenless/redirects
                            94. -
                            95. model/screenless/screenless_payment
                            96. -
                            97. model/screenless/transfer_method
                            98. -
                            99. model/screenless/transfer_payment
                            100. -
                            101. model/tokenization/tokenization
                            102. -
                            103. model/tpay_configuration
                            104. -
                            105. model/tpay_environment
                            106. -
                            107. model/transaction/single_transaction
                            108. -
                            109. model/transaction/token_payment
                            110. -
                            111. model/transaction/transaction
                            112. -
                            113. model/wallet_configuration
                            114. -
                            115. tpay_button
                            116. -
                            117. tpay_method_channel
                            118. -
                            119. tpay_platform_interface
                            120. -
                            121. util/google_pay_configuration_util
                            122. -
                            123. util/google_pay_util
                            124. -
                            125. util/payment_channels_util
                            126. -
                            127. util/result_util
                            128. -
                            129. util/screenless_result_util
                            130. +
                            131. model/apple_pay_configuration
                            132. +
                            133. model/certificate_pinning_configuration
                            134. +
                            135. model/google_pay_configuration
                            136. +
                            137. model/language/language
                            138. +
                            139. model/language/languages
                            140. +
                            141. model/language/localized_string
                            142. +
                            143. model/merchant/merchant
                            144. +
                            145. model/merchant/merchant_authorization
                            146. +
                            147. model/merchant/merchant_details
                            148. +
                            149. model/payer/payer
                            150. +
                            151. model/payer/payer_address
                            152. +
                            153. model/payer/payer_context
                            154. +
                            155. model/paymentChannel/payment_channel
                            156. +
                            157. model/paymentChannel/payment_constraint
                            158. +
                            159. model/paymentChannel/payment_group
                            160. +
                            161. model/paymentMethod/automatic_payment_methods
                            162. +
                            163. model/paymentMethod/blik_alias
                            164. +
                            165. model/paymentMethod/credit_card_brand
                            166. +
                            167. model/paymentMethod/digital_wallet
                            168. +
                            169. model/paymentMethod/installment_payment
                            170. +
                            171. model/paymentMethod/payment_method
                            172. +
                            173. model/paymentMethod/payment_methods
                            174. +
                            175. model/paymentMethod/tokenized_card
                            176. +
                            177. model/result/google_pay_configure_result
                            178. +
                            179. model/result/google_pay_open_result
                            180. +
                            181. model/result/payment_channels_result
                            182. +
                            183. model/result/result
                            184. +
                            185. model/result/screenless_result
                            186. +
                            187. model/screenless/ambiguous_alias
                            188. +
                            189. model/screenless/ambiguous_blik_payment
                            190. +
                            191. model/screenless/apple_pay_payment
                            192. +
                            193. model/screenless/blik_payment
                            194. +
                            195. model/screenless/callbacks
                            196. +
                            197. model/screenless/credit_card
                            198. +
                            199. model/screenless/credit_card_config
                            200. +
                            201. model/screenless/credit_card_payment
                            202. +
                            203. model/screenless/expiration_date
                            204. +
                            205. model/screenless/google_pay_environment
                            206. +
                            207. model/screenless/google_pay_payment
                            208. +
                            209. model/screenless/google_pay_utils_configuration
                            210. +
                            211. model/screenless/notifications
                            212. +
                            213. model/screenless/pay_po_payment
                            214. +
                            215. model/screenless/payment_details
                            216. +
                            217. model/screenless/raty_pekao_payment
                            218. +
                            219. model/screenless/recursive
                            220. +
                            221. model/screenless/redirects
                            222. +
                            223. model/screenless/screenless_payment
                            224. +
                            225. model/screenless/transfer_method
                            226. +
                            227. model/screenless/transfer_payment
                            228. +
                            229. model/tokenization/tokenization
                            230. +
                            231. model/tpay_configuration
                            232. +
                            233. model/tpay_environment
                            234. +
                            235. model/transaction/single_transaction
                            236. +
                            237. model/transaction/token_payment
                            238. +
                            239. model/transaction/transaction
                            240. +
                            241. model/wallet_configuration
                            242. +
                            243. tpay_button
                            244. +
                            245. tpay_method_channel
                            246. +
                            247. tpay_platform_interface
                            248. +
                            249. util/google_pay_configuration_util
                            250. +
                            251. util/google_pay_util
                            252. +
                            253. util/payment_channels_util
                            254. +
                            255. util/result_util
                            256. +
                            257. util/screenless_result_util
                            @@ -176,7 +173,7 @@
                            merchant_authorization library
                            flutter_tpay - 1.2.1 + 1.2.8
                            diff --git a/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library-sidebar.html b/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library-sidebar.html index baf2d9fa..6364ce05 100644 --- a/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library-sidebar.html +++ b/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library-sidebar.html @@ -1,5 +1,5 @@
                              -
                            1. Classes
                            2. +
                            3. Classes
                            4. MerchantAuthorization
                            5. diff --git a/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library.html b/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library.html index e96bc7cf..1138cede 100644 --- a/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library.html +++ b/doc/model_merchant_merchant_authorization/model_merchant_merchant_authorization-library.html @@ -1,10 +1,10 @@ - - + + -

                              New URL

                              +

                              New URL

                              \ No newline at end of file diff --git a/doc/model_merchant_merchant_details/MerchantDetails-class-sidebar.html b/doc/model_merchant_merchant_details/MerchantDetails-class-sidebar.html index d21c05d6..700a982b 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails-class-sidebar.html +++ b/doc/model_merchant_merchant_details/MerchantDetails-class-sidebar.html @@ -1,7 +1,7 @@
                              1. Constructors
                              2. -
                              3. MerchantDetails
                              4. +
                              5. new
                              6. fromJson
                              7. diff --git a/doc/model_merchant_merchant_details/MerchantDetails-class.html b/doc/model_merchant_merchant_details/MerchantDetails-class.html index e2b33fdf..48533493 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails-class.html +++ b/doc/model_merchant_merchant_details/MerchantDetails-class.html @@ -25,24 +25,21 @@ menu
                                MerchantDetails
                                -
                                - -
                                +
                                MerchantDetails class
                                Annotations
                                @@ -86,7 +83,7 @@

                                MerchantDetails class

                                Constructors

                                -
                                +
                                MerchantDetails({required List<LocalizedString> merchantDisplayName, required List<LocalizedString> merchantHeadquarters, required List<LocalizedString> regulations})
                                @@ -252,7 +249,7 @@

                                Operators

                                @@ -265,7 +262,7 @@
                                merchant_details library
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.fromJson.html b/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.fromJson.html index 621db77c..ce39d886 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.fromJson.html +++ b/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                - -
                                +
                                Implementation

                                @@ -94,7 +91,7 @@
                                MerchantDetails class
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.html b/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.html index 6e31e433..31c3fae4 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.html +++ b/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.html @@ -4,8 +4,8 @@ - - MerchantDetails constructor - MerchantDetails - merchant_details library - Dart API + + MerchantDetails.new constructor - MerchantDetails - merchant_details library - Dart API @@ -25,25 +25,22 @@ menu -
                                MerchantDetails
                                +
                                MerchantDetails.new
                                -
                                - -
                                +
                                Implementation
                                MerchantDetails class
                                @@ -100,7 +97,7 @@
                                MerchantDetails class
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/merchantDisplayName.html b/doc/model_merchant_merchant_details/MerchantDetails/merchantDisplayName.html index e472f6da..9b8e8ec8 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails/merchantDisplayName.html +++ b/doc/model_merchant_merchant_details/MerchantDetails/merchantDisplayName.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                - -
                                +
                                Implementation @@ -97,7 +94,7 @@
                                MerchantDetails class
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/merchantHeadquarters.html b/doc/model_merchant_merchant_details/MerchantDetails/merchantHeadquarters.html index 19d608ad..8d951445 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails/merchantHeadquarters.html +++ b/doc/model_merchant_merchant_details/MerchantDetails/merchantHeadquarters.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                - -
                                +
                                Implementation @@ -97,7 +94,7 @@
                                MerchantDetails class
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/regulations.html b/doc/model_merchant_merchant_details/MerchantDetails/regulations.html index 6a184193..23563ec2 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails/regulations.html +++ b/doc/model_merchant_merchant_details/MerchantDetails/regulations.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                - -
                                +
                                Implementation @@ -97,7 +94,7 @@
                                MerchantDetails class
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/toJson.html b/doc/model_merchant_merchant_details/MerchantDetails/toJson.html index 16243414..ca4c0456 100644 --- a/doc/model_merchant_merchant_details/MerchantDetails/toJson.html +++ b/doc/model_merchant_merchant_details/MerchantDetails/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                - -
                                +
                                Implementation @@ -97,7 +94,7 @@
                                MerchantDetails class
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/index.html b/doc/model_merchant_merchant_details/index.html index 08e0fca0..04e066f7 100644 --- a/doc/model_merchant_merchant_details/index.html +++ b/doc/model_merchant_merchant_details/index.html @@ -31,17 +31,14 @@ -
                                - -
                                +
                                Classes
                                flutter_tpay package
                                1. Libraries
                                2. -
                                3. model/apple_pay_configuration
                                4. -
                                5. model/certificate_pinning_configuration
                                6. -
                                7. model/google_pay_configuration
                                8. -
                                9. model/language/language
                                10. -
                                11. model/language/languages
                                12. -
                                13. model/language/localized_string
                                14. -
                                15. model/merchant/merchant
                                16. -
                                17. model/merchant/merchant_authorization
                                18. -
                                19. model/merchant/merchant_details
                                20. -
                                21. model/payer/payer
                                22. -
                                23. model/payer/payer_address
                                24. -
                                25. model/payer/payer_context
                                26. -
                                27. model/paymentChannel/payment_channel
                                28. -
                                29. model/paymentChannel/payment_constraint
                                30. -
                                31. model/paymentChannel/payment_group
                                32. -
                                33. model/paymentMethod/automatic_payment_methods
                                34. -
                                35. model/paymentMethod/blik_alias
                                36. -
                                37. model/paymentMethod/credit_card_brand
                                38. -
                                39. model/paymentMethod/digital_wallet
                                40. -
                                41. model/paymentMethod/installment_payment
                                42. -
                                43. model/paymentMethod/payment_method
                                44. -
                                45. model/paymentMethod/payment_methods
                                46. -
                                47. model/paymentMethod/tokenized_card
                                48. -
                                49. model/result/google_pay_configure_result
                                50. -
                                51. model/result/google_pay_open_result
                                52. -
                                53. model/result/payment_channels_result
                                54. -
                                55. model/result/result
                                56. -
                                57. model/result/screenless_result
                                58. -
                                59. model/screenless/ambiguous_alias
                                60. -
                                61. model/screenless/ambiguous_blik_payment
                                62. -
                                63. model/screenless/apple_pay_payment
                                64. -
                                65. model/screenless/blik_payment
                                66. -
                                67. model/screenless/callbacks
                                68. -
                                69. model/screenless/credit_card
                                70. -
                                71. model/screenless/credit_card_config
                                72. -
                                73. model/screenless/credit_card_payment
                                74. -
                                75. model/screenless/expiration_date
                                76. -
                                77. model/screenless/google_pay_environment
                                78. -
                                79. model/screenless/google_pay_payment
                                80. -
                                81. model/screenless/google_pay_utils_configuration
                                82. -
                                83. model/screenless/notifications
                                84. -
                                85. model/screenless/pay_po_payment
                                86. -
                                87. model/screenless/payment_details
                                88. -
                                89. model/screenless/raty_pekao_payment
                                90. -
                                91. model/screenless/recursive
                                92. -
                                93. model/screenless/redirects
                                94. -
                                95. model/screenless/screenless_payment
                                96. -
                                97. model/screenless/transfer_method
                                98. -
                                99. model/screenless/transfer_payment
                                100. -
                                101. model/tokenization/tokenization
                                102. -
                                103. model/tpay_configuration
                                104. -
                                105. model/tpay_environment
                                106. -
                                107. model/transaction/single_transaction
                                108. -
                                109. model/transaction/token_payment
                                110. -
                                111. model/transaction/transaction
                                112. -
                                113. model/wallet_configuration
                                114. -
                                115. tpay_button
                                116. -
                                117. tpay_method_channel
                                118. -
                                119. tpay_platform_interface
                                120. -
                                121. util/google_pay_configuration_util
                                122. -
                                123. util/google_pay_util
                                124. -
                                125. util/payment_channels_util
                                126. -
                                127. util/result_util
                                128. -
                                129. util/screenless_result_util
                                130. +
                                131. model/apple_pay_configuration
                                132. +
                                133. model/certificate_pinning_configuration
                                134. +
                                135. model/google_pay_configuration
                                136. +
                                137. model/language/language
                                138. +
                                139. model/language/languages
                                140. +
                                141. model/language/localized_string
                                142. +
                                143. model/merchant/merchant
                                144. +
                                145. model/merchant/merchant_authorization
                                146. +
                                147. model/merchant/merchant_details
                                148. +
                                149. model/payer/payer
                                150. +
                                151. model/payer/payer_address
                                152. +
                                153. model/payer/payer_context
                                154. +
                                155. model/paymentChannel/payment_channel
                                156. +
                                157. model/paymentChannel/payment_constraint
                                158. +
                                159. model/paymentChannel/payment_group
                                160. +
                                161. model/paymentMethod/automatic_payment_methods
                                162. +
                                163. model/paymentMethod/blik_alias
                                164. +
                                165. model/paymentMethod/credit_card_brand
                                166. +
                                167. model/paymentMethod/digital_wallet
                                168. +
                                169. model/paymentMethod/installment_payment
                                170. +
                                171. model/paymentMethod/payment_method
                                172. +
                                173. model/paymentMethod/payment_methods
                                174. +
                                175. model/paymentMethod/tokenized_card
                                176. +
                                177. model/result/google_pay_configure_result
                                178. +
                                179. model/result/google_pay_open_result
                                180. +
                                181. model/result/payment_channels_result
                                182. +
                                183. model/result/result
                                184. +
                                185. model/result/screenless_result
                                186. +
                                187. model/screenless/ambiguous_alias
                                188. +
                                189. model/screenless/ambiguous_blik_payment
                                190. +
                                191. model/screenless/apple_pay_payment
                                192. +
                                193. model/screenless/blik_payment
                                194. +
                                195. model/screenless/callbacks
                                196. +
                                197. model/screenless/credit_card
                                198. +
                                199. model/screenless/credit_card_config
                                200. +
                                201. model/screenless/credit_card_payment
                                202. +
                                203. model/screenless/expiration_date
                                204. +
                                205. model/screenless/google_pay_environment
                                206. +
                                207. model/screenless/google_pay_payment
                                208. +
                                209. model/screenless/google_pay_utils_configuration
                                210. +
                                211. model/screenless/notifications
                                212. +
                                213. model/screenless/pay_po_payment
                                214. +
                                215. model/screenless/payment_details
                                216. +
                                217. model/screenless/raty_pekao_payment
                                218. +
                                219. model/screenless/recursive
                                220. +
                                221. model/screenless/redirects
                                222. +
                                223. model/screenless/screenless_payment
                                224. +
                                225. model/screenless/transfer_method
                                226. +
                                227. model/screenless/transfer_payment
                                228. +
                                229. model/tokenization/tokenization
                                230. +
                                231. model/tpay_configuration
                                232. +
                                233. model/tpay_environment
                                234. +
                                235. model/transaction/single_transaction
                                236. +
                                237. model/transaction/token_payment
                                238. +
                                239. model/transaction/transaction
                                240. +
                                241. model/wallet_configuration
                                242. +
                                243. tpay_button
                                244. +
                                245. tpay_method_channel
                                246. +
                                247. tpay_platform_interface
                                248. +
                                249. util/google_pay_configuration_util
                                250. +
                                251. util/google_pay_util
                                252. +
                                253. util/payment_channels_util
                                254. +
                                255. util/result_util
                                256. +
                                257. util/screenless_result_util
                                @@ -176,7 +173,7 @@
                                merchant_details library
                                flutter_tpay - 1.2.1 + 1.2.8
                                diff --git a/doc/model_merchant_merchant_details/model_merchant_merchant_details-library-sidebar.html b/doc/model_merchant_merchant_details/model_merchant_merchant_details-library-sidebar.html index c908aa61..07307713 100644 --- a/doc/model_merchant_merchant_details/model_merchant_merchant_details-library-sidebar.html +++ b/doc/model_merchant_merchant_details/model_merchant_merchant_details-library-sidebar.html @@ -1,5 +1,5 @@
                                  -
                                1. Classes
                                2. +
                                3. Classes
                                4. MerchantDetails
                                5. diff --git a/doc/model_merchant_merchant_details/model_merchant_merchant_details-library.html b/doc/model_merchant_merchant_details/model_merchant_merchant_details-library.html index 269fa2bf..6247e260 100644 --- a/doc/model_merchant_merchant_details/model_merchant_merchant_details-library.html +++ b/doc/model_merchant_merchant_details/model_merchant_merchant_details-library.html @@ -1,10 +1,10 @@ - - + + -

                                  New URL

                                  +

                                  New URL

                                  \ No newline at end of file diff --git a/doc/model_payer_payer/Payer-class-sidebar.html b/doc/model_payer_payer/Payer-class-sidebar.html index 62831925..78fe2169 100644 --- a/doc/model_payer_payer/Payer-class-sidebar.html +++ b/doc/model_payer_payer/Payer-class-sidebar.html @@ -1,7 +1,7 @@
                                  1. Constructors
                                  2. -
                                  3. Payer
                                  4. +
                                  5. new
                                  6. fromJson
                                  7. diff --git a/doc/model_payer_payer/Payer-class.html b/doc/model_payer_payer/Payer-class.html index ba2618bf..50c9bbba 100644 --- a/doc/model_payer_payer/Payer-class.html +++ b/doc/model_payer_payer/Payer-class.html @@ -25,24 +25,21 @@ menu
                                    Payer
                                    -
                                    - -
                                    +
                                    Payer class
                                    Annotations
                                    @@ -86,7 +83,7 @@

                                    Payer class

                                    Constructors

                                    -
                                    +
                                    Payer({required String name, required String email, required String? phone, required PayerAddress? address})
                                    @@ -264,7 +261,7 @@

                                    Operators

                                    @@ -277,7 +274,7 @@
                                    payer library
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/Payer.fromJson.html b/doc/model_payer_payer/Payer/Payer.fromJson.html index 548f4796..a375b8c5 100644 --- a/doc/model_payer_payer/Payer/Payer.fromJson.html +++ b/doc/model_payer_payer/Payer/Payer.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                    - -
                                    +
                                    Implementation

                                    @@ -94,7 +91,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/Payer.html b/doc/model_payer_payer/Payer/Payer.html index 8cf5c5da..f7c0cf7a 100644 --- a/doc/model_payer_payer/Payer/Payer.html +++ b/doc/model_payer_payer/Payer/Payer.html @@ -4,8 +4,8 @@ - - Payer constructor - Payer - payer library - Dart API + + Payer.new constructor - Payer - payer library - Dart API @@ -25,25 +25,22 @@ menu -
                                    Payer
                                    +
                                    Payer.new
                                    -
                                    - -
                                    +
                                    Implementation
                                    Payer class
                                    @@ -102,7 +99,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/address.html b/doc/model_payer_payer/Payer/address.html index 029407ad..b003d898 100644 --- a/doc/model_payer_payer/Payer/address.html +++ b/doc/model_payer_payer/Payer/address.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                    - -
                                    +
                                    Implementation @@ -97,7 +94,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/email.html b/doc/model_payer_payer/Payer/email.html index 2afe919c..b12952de 100644 --- a/doc/model_payer_payer/Payer/email.html +++ b/doc/model_payer_payer/Payer/email.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                    - -
                                    +
                                    Implementation @@ -97,7 +94,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/name.html b/doc/model_payer_payer/Payer/name.html index 2428e08d..48eb74e0 100644 --- a/doc/model_payer_payer/Payer/name.html +++ b/doc/model_payer_payer/Payer/name.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                    - -
                                    +
                                    Implementation @@ -97,7 +94,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/phone.html b/doc/model_payer_payer/Payer/phone.html index ca3f95e1..0e1bb108 100644 --- a/doc/model_payer_payer/Payer/phone.html +++ b/doc/model_payer_payer/Payer/phone.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                    - -
                                    +
                                    Implementation @@ -97,7 +94,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/Payer/toJson.html b/doc/model_payer_payer/Payer/toJson.html index 28cf1390..5fd339fb 100644 --- a/doc/model_payer_payer/Payer/toJson.html +++ b/doc/model_payer_payer/Payer/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                    - -
                                    +
                                    Implementation @@ -97,7 +94,7 @@
                                    Payer class
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/index.html b/doc/model_payer_payer/index.html index 5da6cff0..26f1a1fd 100644 --- a/doc/model_payer_payer/index.html +++ b/doc/model_payer_payer/index.html @@ -31,17 +31,14 @@ -
                                    - -
                                    +
                                    Classes
                                    flutter_tpay package
                                    1. Libraries
                                    2. -
                                    3. model/apple_pay_configuration
                                    4. -
                                    5. model/certificate_pinning_configuration
                                    6. -
                                    7. model/google_pay_configuration
                                    8. -
                                    9. model/language/language
                                    10. -
                                    11. model/language/languages
                                    12. -
                                    13. model/language/localized_string
                                    14. -
                                    15. model/merchant/merchant
                                    16. -
                                    17. model/merchant/merchant_authorization
                                    18. -
                                    19. model/merchant/merchant_details
                                    20. -
                                    21. model/payer/payer
                                    22. -
                                    23. model/payer/payer_address
                                    24. -
                                    25. model/payer/payer_context
                                    26. -
                                    27. model/paymentChannel/payment_channel
                                    28. -
                                    29. model/paymentChannel/payment_constraint
                                    30. -
                                    31. model/paymentChannel/payment_group
                                    32. -
                                    33. model/paymentMethod/automatic_payment_methods
                                    34. -
                                    35. model/paymentMethod/blik_alias
                                    36. -
                                    37. model/paymentMethod/credit_card_brand
                                    38. -
                                    39. model/paymentMethod/digital_wallet
                                    40. -
                                    41. model/paymentMethod/installment_payment
                                    42. -
                                    43. model/paymentMethod/payment_method
                                    44. -
                                    45. model/paymentMethod/payment_methods
                                    46. -
                                    47. model/paymentMethod/tokenized_card
                                    48. -
                                    49. model/result/google_pay_configure_result
                                    50. -
                                    51. model/result/google_pay_open_result
                                    52. -
                                    53. model/result/payment_channels_result
                                    54. -
                                    55. model/result/result
                                    56. -
                                    57. model/result/screenless_result
                                    58. -
                                    59. model/screenless/ambiguous_alias
                                    60. -
                                    61. model/screenless/ambiguous_blik_payment
                                    62. -
                                    63. model/screenless/apple_pay_payment
                                    64. -
                                    65. model/screenless/blik_payment
                                    66. -
                                    67. model/screenless/callbacks
                                    68. -
                                    69. model/screenless/credit_card
                                    70. -
                                    71. model/screenless/credit_card_config
                                    72. -
                                    73. model/screenless/credit_card_payment
                                    74. -
                                    75. model/screenless/expiration_date
                                    76. -
                                    77. model/screenless/google_pay_environment
                                    78. -
                                    79. model/screenless/google_pay_payment
                                    80. -
                                    81. model/screenless/google_pay_utils_configuration
                                    82. -
                                    83. model/screenless/notifications
                                    84. -
                                    85. model/screenless/pay_po_payment
                                    86. -
                                    87. model/screenless/payment_details
                                    88. -
                                    89. model/screenless/raty_pekao_payment
                                    90. -
                                    91. model/screenless/recursive
                                    92. -
                                    93. model/screenless/redirects
                                    94. -
                                    95. model/screenless/screenless_payment
                                    96. -
                                    97. model/screenless/transfer_method
                                    98. -
                                    99. model/screenless/transfer_payment
                                    100. -
                                    101. model/tokenization/tokenization
                                    102. -
                                    103. model/tpay_configuration
                                    104. -
                                    105. model/tpay_environment
                                    106. -
                                    107. model/transaction/single_transaction
                                    108. -
                                    109. model/transaction/token_payment
                                    110. -
                                    111. model/transaction/transaction
                                    112. -
                                    113. model/wallet_configuration
                                    114. -
                                    115. tpay_button
                                    116. -
                                    117. tpay_method_channel
                                    118. -
                                    119. tpay_platform_interface
                                    120. -
                                    121. util/google_pay_configuration_util
                                    122. -
                                    123. util/google_pay_util
                                    124. -
                                    125. util/payment_channels_util
                                    126. -
                                    127. util/result_util
                                    128. -
                                    129. util/screenless_result_util
                                    130. +
                                    131. model/apple_pay_configuration
                                    132. +
                                    133. model/certificate_pinning_configuration
                                    134. +
                                    135. model/google_pay_configuration
                                    136. +
                                    137. model/language/language
                                    138. +
                                    139. model/language/languages
                                    140. +
                                    141. model/language/localized_string
                                    142. +
                                    143. model/merchant/merchant
                                    144. +
                                    145. model/merchant/merchant_authorization
                                    146. +
                                    147. model/merchant/merchant_details
                                    148. +
                                    149. model/payer/payer
                                    150. +
                                    151. model/payer/payer_address
                                    152. +
                                    153. model/payer/payer_context
                                    154. +
                                    155. model/paymentChannel/payment_channel
                                    156. +
                                    157. model/paymentChannel/payment_constraint
                                    158. +
                                    159. model/paymentChannel/payment_group
                                    160. +
                                    161. model/paymentMethod/automatic_payment_methods
                                    162. +
                                    163. model/paymentMethod/blik_alias
                                    164. +
                                    165. model/paymentMethod/credit_card_brand
                                    166. +
                                    167. model/paymentMethod/digital_wallet
                                    168. +
                                    169. model/paymentMethod/installment_payment
                                    170. +
                                    171. model/paymentMethod/payment_method
                                    172. +
                                    173. model/paymentMethod/payment_methods
                                    174. +
                                    175. model/paymentMethod/tokenized_card
                                    176. +
                                    177. model/result/google_pay_configure_result
                                    178. +
                                    179. model/result/google_pay_open_result
                                    180. +
                                    181. model/result/payment_channels_result
                                    182. +
                                    183. model/result/result
                                    184. +
                                    185. model/result/screenless_result
                                    186. +
                                    187. model/screenless/ambiguous_alias
                                    188. +
                                    189. model/screenless/ambiguous_blik_payment
                                    190. +
                                    191. model/screenless/apple_pay_payment
                                    192. +
                                    193. model/screenless/blik_payment
                                    194. +
                                    195. model/screenless/callbacks
                                    196. +
                                    197. model/screenless/credit_card
                                    198. +
                                    199. model/screenless/credit_card_config
                                    200. +
                                    201. model/screenless/credit_card_payment
                                    202. +
                                    203. model/screenless/expiration_date
                                    204. +
                                    205. model/screenless/google_pay_environment
                                    206. +
                                    207. model/screenless/google_pay_payment
                                    208. +
                                    209. model/screenless/google_pay_utils_configuration
                                    210. +
                                    211. model/screenless/notifications
                                    212. +
                                    213. model/screenless/pay_po_payment
                                    214. +
                                    215. model/screenless/payment_details
                                    216. +
                                    217. model/screenless/raty_pekao_payment
                                    218. +
                                    219. model/screenless/recursive
                                    220. +
                                    221. model/screenless/redirects
                                    222. +
                                    223. model/screenless/screenless_payment
                                    224. +
                                    225. model/screenless/transfer_method
                                    226. +
                                    227. model/screenless/transfer_payment
                                    228. +
                                    229. model/tokenization/tokenization
                                    230. +
                                    231. model/tpay_configuration
                                    232. +
                                    233. model/tpay_environment
                                    234. +
                                    235. model/transaction/single_transaction
                                    236. +
                                    237. model/transaction/token_payment
                                    238. +
                                    239. model/transaction/transaction
                                    240. +
                                    241. model/wallet_configuration
                                    242. +
                                    243. tpay_button
                                    244. +
                                    245. tpay_method_channel
                                    246. +
                                    247. tpay_platform_interface
                                    248. +
                                    249. util/google_pay_configuration_util
                                    250. +
                                    251. util/google_pay_util
                                    252. +
                                    253. util/payment_channels_util
                                    254. +
                                    255. util/result_util
                                    256. +
                                    257. util/screenless_result_util
                                    @@ -176,7 +173,7 @@
                                    payer library
                                    flutter_tpay - 1.2.1 + 1.2.8
                                    diff --git a/doc/model_payer_payer/model_payer_payer-library-sidebar.html b/doc/model_payer_payer/model_payer_payer-library-sidebar.html index e36eb3e6..bbddd32b 100644 --- a/doc/model_payer_payer/model_payer_payer-library-sidebar.html +++ b/doc/model_payer_payer/model_payer_payer-library-sidebar.html @@ -1,5 +1,5 @@
                                      -
                                    1. Classes
                                    2. +
                                    3. Classes
                                    4. Payer
                                    5. diff --git a/doc/model_payer_payer/model_payer_payer-library.html b/doc/model_payer_payer/model_payer_payer-library.html index 0a94a715..44e0acb2 100644 --- a/doc/model_payer_payer/model_payer_payer-library.html +++ b/doc/model_payer_payer/model_payer_payer-library.html @@ -1,10 +1,10 @@ - - + + -

                                      New URL

                                      +

                                      New URL

                                      \ No newline at end of file diff --git a/doc/model_payer_payer_address/PayerAddress-class-sidebar.html b/doc/model_payer_payer_address/PayerAddress-class-sidebar.html index 92a6dac1..7d98b24c 100644 --- a/doc/model_payer_payer_address/PayerAddress-class-sidebar.html +++ b/doc/model_payer_payer_address/PayerAddress-class-sidebar.html @@ -1,7 +1,7 @@
                                      1. Constructors
                                      2. -
                                      3. PayerAddress
                                      4. +
                                      5. new
                                      6. fromJson
                                      7. diff --git a/doc/model_payer_payer_address/PayerAddress-class.html b/doc/model_payer_payer_address/PayerAddress-class.html index 95249451..ac9f5d62 100644 --- a/doc/model_payer_payer_address/PayerAddress-class.html +++ b/doc/model_payer_payer_address/PayerAddress-class.html @@ -25,24 +25,21 @@ menu
                                        PayerAddress
                                        -
                                        - -
                                        +
                                        PayerAddress class
                                        Annotations
                                        @@ -86,7 +83,7 @@

                                        PayerAddress class

                                        Constructors

                                        -
                                        +
                                        PayerAddress({required String? address, required String? city, required String? countryCode, required String? postalCode})
                                        @@ -264,7 +261,7 @@

                                        Operators

                                        @@ -277,7 +274,7 @@
                                        payer_address library
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/PayerAddress.fromJson.html b/doc/model_payer_payer_address/PayerAddress/PayerAddress.fromJson.html index b69eb67c..e9585c30 100644 --- a/doc/model_payer_payer_address/PayerAddress/PayerAddress.fromJson.html +++ b/doc/model_payer_payer_address/PayerAddress/PayerAddress.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                        - -
                                        +
                                        Implementation

                                        @@ -94,7 +91,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/PayerAddress.html b/doc/model_payer_payer_address/PayerAddress/PayerAddress.html index 5c324d14..18be51f9 100644 --- a/doc/model_payer_payer_address/PayerAddress/PayerAddress.html +++ b/doc/model_payer_payer_address/PayerAddress/PayerAddress.html @@ -4,8 +4,8 @@ - - PayerAddress constructor - PayerAddress - payer_address library - Dart API + + PayerAddress.new constructor - PayerAddress - payer_address library - Dart API @@ -25,25 +25,22 @@ menu -
                                        PayerAddress
                                        +
                                        PayerAddress.new
                                        -
                                        - -
                                        +
                                        Implementation
                                        PayerAddress class
                                        @@ -102,7 +99,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/address.html b/doc/model_payer_payer_address/PayerAddress/address.html index c8d522f3..e0b78e39 100644 --- a/doc/model_payer_payer_address/PayerAddress/address.html +++ b/doc/model_payer_payer_address/PayerAddress/address.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                        - -
                                        +
                                        Implementation @@ -97,7 +94,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/city.html b/doc/model_payer_payer_address/PayerAddress/city.html index cad6cc97..f2379c55 100644 --- a/doc/model_payer_payer_address/PayerAddress/city.html +++ b/doc/model_payer_payer_address/PayerAddress/city.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                        - -
                                        +
                                        Implementation @@ -97,7 +94,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/countryCode.html b/doc/model_payer_payer_address/PayerAddress/countryCode.html index 37318724..4b922a0d 100644 --- a/doc/model_payer_payer_address/PayerAddress/countryCode.html +++ b/doc/model_payer_payer_address/PayerAddress/countryCode.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                        - -
                                        +
                                        Implementation @@ -97,7 +94,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/postalCode.html b/doc/model_payer_payer_address/PayerAddress/postalCode.html index b26eba2e..f2279138 100644 --- a/doc/model_payer_payer_address/PayerAddress/postalCode.html +++ b/doc/model_payer_payer_address/PayerAddress/postalCode.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                        - -
                                        +
                                        Implementation @@ -97,7 +94,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/toJson.html b/doc/model_payer_payer_address/PayerAddress/toJson.html index eb669d32..412c1d18 100644 --- a/doc/model_payer_payer_address/PayerAddress/toJson.html +++ b/doc/model_payer_payer_address/PayerAddress/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                        - -
                                        +
                                        Implementation @@ -97,7 +94,7 @@
                                        PayerAddress class
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/index.html b/doc/model_payer_payer_address/index.html index 12e23033..3e834631 100644 --- a/doc/model_payer_payer_address/index.html +++ b/doc/model_payer_payer_address/index.html @@ -31,17 +31,14 @@ -
                                        - -
                                        +
                                        Classes
                                        flutter_tpay package
                                        1. Libraries
                                        2. -
                                        3. model/apple_pay_configuration
                                        4. -
                                        5. model/certificate_pinning_configuration
                                        6. -
                                        7. model/google_pay_configuration
                                        8. -
                                        9. model/language/language
                                        10. -
                                        11. model/language/languages
                                        12. -
                                        13. model/language/localized_string
                                        14. -
                                        15. model/merchant/merchant
                                        16. -
                                        17. model/merchant/merchant_authorization
                                        18. -
                                        19. model/merchant/merchant_details
                                        20. -
                                        21. model/payer/payer
                                        22. -
                                        23. model/payer/payer_address
                                        24. -
                                        25. model/payer/payer_context
                                        26. -
                                        27. model/paymentChannel/payment_channel
                                        28. -
                                        29. model/paymentChannel/payment_constraint
                                        30. -
                                        31. model/paymentChannel/payment_group
                                        32. -
                                        33. model/paymentMethod/automatic_payment_methods
                                        34. -
                                        35. model/paymentMethod/blik_alias
                                        36. -
                                        37. model/paymentMethod/credit_card_brand
                                        38. -
                                        39. model/paymentMethod/digital_wallet
                                        40. -
                                        41. model/paymentMethod/installment_payment
                                        42. -
                                        43. model/paymentMethod/payment_method
                                        44. -
                                        45. model/paymentMethod/payment_methods
                                        46. -
                                        47. model/paymentMethod/tokenized_card
                                        48. -
                                        49. model/result/google_pay_configure_result
                                        50. -
                                        51. model/result/google_pay_open_result
                                        52. -
                                        53. model/result/payment_channels_result
                                        54. -
                                        55. model/result/result
                                        56. -
                                        57. model/result/screenless_result
                                        58. -
                                        59. model/screenless/ambiguous_alias
                                        60. -
                                        61. model/screenless/ambiguous_blik_payment
                                        62. -
                                        63. model/screenless/apple_pay_payment
                                        64. -
                                        65. model/screenless/blik_payment
                                        66. -
                                        67. model/screenless/callbacks
                                        68. -
                                        69. model/screenless/credit_card
                                        70. -
                                        71. model/screenless/credit_card_config
                                        72. -
                                        73. model/screenless/credit_card_payment
                                        74. -
                                        75. model/screenless/expiration_date
                                        76. -
                                        77. model/screenless/google_pay_environment
                                        78. -
                                        79. model/screenless/google_pay_payment
                                        80. -
                                        81. model/screenless/google_pay_utils_configuration
                                        82. -
                                        83. model/screenless/notifications
                                        84. -
                                        85. model/screenless/pay_po_payment
                                        86. -
                                        87. model/screenless/payment_details
                                        88. -
                                        89. model/screenless/raty_pekao_payment
                                        90. -
                                        91. model/screenless/recursive
                                        92. -
                                        93. model/screenless/redirects
                                        94. -
                                        95. model/screenless/screenless_payment
                                        96. -
                                        97. model/screenless/transfer_method
                                        98. -
                                        99. model/screenless/transfer_payment
                                        100. -
                                        101. model/tokenization/tokenization
                                        102. -
                                        103. model/tpay_configuration
                                        104. -
                                        105. model/tpay_environment
                                        106. -
                                        107. model/transaction/single_transaction
                                        108. -
                                        109. model/transaction/token_payment
                                        110. -
                                        111. model/transaction/transaction
                                        112. -
                                        113. model/wallet_configuration
                                        114. -
                                        115. tpay_button
                                        116. -
                                        117. tpay_method_channel
                                        118. -
                                        119. tpay_platform_interface
                                        120. -
                                        121. util/google_pay_configuration_util
                                        122. -
                                        123. util/google_pay_util
                                        124. -
                                        125. util/payment_channels_util
                                        126. -
                                        127. util/result_util
                                        128. -
                                        129. util/screenless_result_util
                                        130. +
                                        131. model/apple_pay_configuration
                                        132. +
                                        133. model/certificate_pinning_configuration
                                        134. +
                                        135. model/google_pay_configuration
                                        136. +
                                        137. model/language/language
                                        138. +
                                        139. model/language/languages
                                        140. +
                                        141. model/language/localized_string
                                        142. +
                                        143. model/merchant/merchant
                                        144. +
                                        145. model/merchant/merchant_authorization
                                        146. +
                                        147. model/merchant/merchant_details
                                        148. +
                                        149. model/payer/payer
                                        150. +
                                        151. model/payer/payer_address
                                        152. +
                                        153. model/payer/payer_context
                                        154. +
                                        155. model/paymentChannel/payment_channel
                                        156. +
                                        157. model/paymentChannel/payment_constraint
                                        158. +
                                        159. model/paymentChannel/payment_group
                                        160. +
                                        161. model/paymentMethod/automatic_payment_methods
                                        162. +
                                        163. model/paymentMethod/blik_alias
                                        164. +
                                        165. model/paymentMethod/credit_card_brand
                                        166. +
                                        167. model/paymentMethod/digital_wallet
                                        168. +
                                        169. model/paymentMethod/installment_payment
                                        170. +
                                        171. model/paymentMethod/payment_method
                                        172. +
                                        173. model/paymentMethod/payment_methods
                                        174. +
                                        175. model/paymentMethod/tokenized_card
                                        176. +
                                        177. model/result/google_pay_configure_result
                                        178. +
                                        179. model/result/google_pay_open_result
                                        180. +
                                        181. model/result/payment_channels_result
                                        182. +
                                        183. model/result/result
                                        184. +
                                        185. model/result/screenless_result
                                        186. +
                                        187. model/screenless/ambiguous_alias
                                        188. +
                                        189. model/screenless/ambiguous_blik_payment
                                        190. +
                                        191. model/screenless/apple_pay_payment
                                        192. +
                                        193. model/screenless/blik_payment
                                        194. +
                                        195. model/screenless/callbacks
                                        196. +
                                        197. model/screenless/credit_card
                                        198. +
                                        199. model/screenless/credit_card_config
                                        200. +
                                        201. model/screenless/credit_card_payment
                                        202. +
                                        203. model/screenless/expiration_date
                                        204. +
                                        205. model/screenless/google_pay_environment
                                        206. +
                                        207. model/screenless/google_pay_payment
                                        208. +
                                        209. model/screenless/google_pay_utils_configuration
                                        210. +
                                        211. model/screenless/notifications
                                        212. +
                                        213. model/screenless/pay_po_payment
                                        214. +
                                        215. model/screenless/payment_details
                                        216. +
                                        217. model/screenless/raty_pekao_payment
                                        218. +
                                        219. model/screenless/recursive
                                        220. +
                                        221. model/screenless/redirects
                                        222. +
                                        223. model/screenless/screenless_payment
                                        224. +
                                        225. model/screenless/transfer_method
                                        226. +
                                        227. model/screenless/transfer_payment
                                        228. +
                                        229. model/tokenization/tokenization
                                        230. +
                                        231. model/tpay_configuration
                                        232. +
                                        233. model/tpay_environment
                                        234. +
                                        235. model/transaction/single_transaction
                                        236. +
                                        237. model/transaction/token_payment
                                        238. +
                                        239. model/transaction/transaction
                                        240. +
                                        241. model/wallet_configuration
                                        242. +
                                        243. tpay_button
                                        244. +
                                        245. tpay_method_channel
                                        246. +
                                        247. tpay_platform_interface
                                        248. +
                                        249. util/google_pay_configuration_util
                                        250. +
                                        251. util/google_pay_util
                                        252. +
                                        253. util/payment_channels_util
                                        254. +
                                        255. util/result_util
                                        256. +
                                        257. util/screenless_result_util
                                        @@ -176,7 +173,7 @@
                                        payer_address library
                                        flutter_tpay - 1.2.1 + 1.2.8
                                        diff --git a/doc/model_payer_payer_address/model_payer_payer_address-library-sidebar.html b/doc/model_payer_payer_address/model_payer_payer_address-library-sidebar.html index ddd859e6..fa7e44be 100644 --- a/doc/model_payer_payer_address/model_payer_payer_address-library-sidebar.html +++ b/doc/model_payer_payer_address/model_payer_payer_address-library-sidebar.html @@ -1,5 +1,5 @@
                                          -
                                        1. Classes
                                        2. +
                                        3. Classes
                                        4. PayerAddress
                                        5. diff --git a/doc/model_payer_payer_address/model_payer_payer_address-library.html b/doc/model_payer_payer_address/model_payer_payer_address-library.html index 6d51ae83..4b0e07ee 100644 --- a/doc/model_payer_payer_address/model_payer_payer_address-library.html +++ b/doc/model_payer_payer_address/model_payer_payer_address-library.html @@ -1,10 +1,10 @@ - - + + -

                                          New URL

                                          +

                                          New URL

                                          \ No newline at end of file diff --git a/doc/model_payer_payer_context/PayerContext-class-sidebar.html b/doc/model_payer_payer_context/PayerContext-class-sidebar.html index 5a94925c..854a14c4 100644 --- a/doc/model_payer_payer_context/PayerContext-class-sidebar.html +++ b/doc/model_payer_payer_context/PayerContext-class-sidebar.html @@ -1,7 +1,7 @@
                                          1. Constructors
                                          2. -
                                          3. PayerContext
                                          4. +
                                          5. new
                                          6. fromJson
                                          7. diff --git a/doc/model_payer_payer_context/PayerContext-class.html b/doc/model_payer_payer_context/PayerContext-class.html index ce5adc59..058d8be0 100644 --- a/doc/model_payer_payer_context/PayerContext-class.html +++ b/doc/model_payer_payer_context/PayerContext-class.html @@ -25,24 +25,21 @@ menu
                                            PayerContext
                                            -
                                            - -
                                            +
                                            PayerContext class
                                            Annotations
                                            @@ -86,7 +83,7 @@

                                            PayerContext class

                                            Constructors

                                            -
                                            +
                                            PayerContext({required Payer? payer, required AutomaticPaymentMethods? automaticPaymentMethods})
                                            @@ -240,7 +237,7 @@

                                            Operators

                                            @@ -253,7 +250,7 @@
                                            payer_context library
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/PayerContext/PayerContext.fromJson.html b/doc/model_payer_payer_context/PayerContext/PayerContext.fromJson.html index ce1bacd8..762d8925 100644 --- a/doc/model_payer_payer_context/PayerContext/PayerContext.fromJson.html +++ b/doc/model_payer_payer_context/PayerContext/PayerContext.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                            - -
                                            +
                                            Implementation

                                            @@ -94,7 +91,7 @@
                                            PayerContext class
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/PayerContext/PayerContext.html b/doc/model_payer_payer_context/PayerContext/PayerContext.html index b59a4aeb..1b1a8e40 100644 --- a/doc/model_payer_payer_context/PayerContext/PayerContext.html +++ b/doc/model_payer_payer_context/PayerContext/PayerContext.html @@ -4,8 +4,8 @@ - - PayerContext constructor - PayerContext - payer_context library - Dart API + + PayerContext.new constructor - PayerContext - payer_context library - Dart API @@ -25,25 +25,22 @@ menu -
                                            PayerContext
                                            +
                                            PayerContext.new
                                            -
                                            - -
                                            +
                                            Implementation
                                            PayerContext class
                                            @@ -95,7 +92,7 @@
                                            PayerContext class
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/PayerContext/automaticPaymentMethods.html b/doc/model_payer_payer_context/PayerContext/automaticPaymentMethods.html index 2b9b17cb..cb6cbe72 100644 --- a/doc/model_payer_payer_context/PayerContext/automaticPaymentMethods.html +++ b/doc/model_payer_payer_context/PayerContext/automaticPaymentMethods.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                            - -
                                            +
                                            Implementation @@ -97,7 +94,7 @@
                                            PayerContext class
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/PayerContext/payer.html b/doc/model_payer_payer_context/PayerContext/payer.html index 65b68919..bf83109b 100644 --- a/doc/model_payer_payer_context/PayerContext/payer.html +++ b/doc/model_payer_payer_context/PayerContext/payer.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                            - -
                                            +
                                            Implementation @@ -97,7 +94,7 @@
                                            PayerContext class
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/PayerContext/toJson.html b/doc/model_payer_payer_context/PayerContext/toJson.html index 9301443d..8a3169f5 100644 --- a/doc/model_payer_payer_context/PayerContext/toJson.html +++ b/doc/model_payer_payer_context/PayerContext/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                            - -
                                            +
                                            Implementation @@ -97,7 +94,7 @@
                                            PayerContext class
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/index.html b/doc/model_payer_payer_context/index.html index 85701916..4492f7c7 100644 --- a/doc/model_payer_payer_context/index.html +++ b/doc/model_payer_payer_context/index.html @@ -31,17 +31,14 @@ -
                                            - -
                                            +
                                            Classes
                                            flutter_tpay package
                                            1. Libraries
                                            2. -
                                            3. model/apple_pay_configuration
                                            4. -
                                            5. model/certificate_pinning_configuration
                                            6. -
                                            7. model/google_pay_configuration
                                            8. -
                                            9. model/language/language
                                            10. -
                                            11. model/language/languages
                                            12. -
                                            13. model/language/localized_string
                                            14. -
                                            15. model/merchant/merchant
                                            16. -
                                            17. model/merchant/merchant_authorization
                                            18. -
                                            19. model/merchant/merchant_details
                                            20. -
                                            21. model/payer/payer
                                            22. -
                                            23. model/payer/payer_address
                                            24. -
                                            25. model/payer/payer_context
                                            26. -
                                            27. model/paymentChannel/payment_channel
                                            28. -
                                            29. model/paymentChannel/payment_constraint
                                            30. -
                                            31. model/paymentChannel/payment_group
                                            32. -
                                            33. model/paymentMethod/automatic_payment_methods
                                            34. -
                                            35. model/paymentMethod/blik_alias
                                            36. -
                                            37. model/paymentMethod/credit_card_brand
                                            38. -
                                            39. model/paymentMethod/digital_wallet
                                            40. -
                                            41. model/paymentMethod/installment_payment
                                            42. -
                                            43. model/paymentMethod/payment_method
                                            44. -
                                            45. model/paymentMethod/payment_methods
                                            46. -
                                            47. model/paymentMethod/tokenized_card
                                            48. -
                                            49. model/result/google_pay_configure_result
                                            50. -
                                            51. model/result/google_pay_open_result
                                            52. -
                                            53. model/result/payment_channels_result
                                            54. -
                                            55. model/result/result
                                            56. -
                                            57. model/result/screenless_result
                                            58. -
                                            59. model/screenless/ambiguous_alias
                                            60. -
                                            61. model/screenless/ambiguous_blik_payment
                                            62. -
                                            63. model/screenless/apple_pay_payment
                                            64. -
                                            65. model/screenless/blik_payment
                                            66. -
                                            67. model/screenless/callbacks
                                            68. -
                                            69. model/screenless/credit_card
                                            70. -
                                            71. model/screenless/credit_card_config
                                            72. -
                                            73. model/screenless/credit_card_payment
                                            74. -
                                            75. model/screenless/expiration_date
                                            76. -
                                            77. model/screenless/google_pay_environment
                                            78. -
                                            79. model/screenless/google_pay_payment
                                            80. -
                                            81. model/screenless/google_pay_utils_configuration
                                            82. -
                                            83. model/screenless/notifications
                                            84. -
                                            85. model/screenless/pay_po_payment
                                            86. -
                                            87. model/screenless/payment_details
                                            88. -
                                            89. model/screenless/raty_pekao_payment
                                            90. -
                                            91. model/screenless/recursive
                                            92. -
                                            93. model/screenless/redirects
                                            94. -
                                            95. model/screenless/screenless_payment
                                            96. -
                                            97. model/screenless/transfer_method
                                            98. -
                                            99. model/screenless/transfer_payment
                                            100. -
                                            101. model/tokenization/tokenization
                                            102. -
                                            103. model/tpay_configuration
                                            104. -
                                            105. model/tpay_environment
                                            106. -
                                            107. model/transaction/single_transaction
                                            108. -
                                            109. model/transaction/token_payment
                                            110. -
                                            111. model/transaction/transaction
                                            112. -
                                            113. model/wallet_configuration
                                            114. -
                                            115. tpay_button
                                            116. -
                                            117. tpay_method_channel
                                            118. -
                                            119. tpay_platform_interface
                                            120. -
                                            121. util/google_pay_configuration_util
                                            122. -
                                            123. util/google_pay_util
                                            124. -
                                            125. util/payment_channels_util
                                            126. -
                                            127. util/result_util
                                            128. -
                                            129. util/screenless_result_util
                                            130. +
                                            131. model/apple_pay_configuration
                                            132. +
                                            133. model/certificate_pinning_configuration
                                            134. +
                                            135. model/google_pay_configuration
                                            136. +
                                            137. model/language/language
                                            138. +
                                            139. model/language/languages
                                            140. +
                                            141. model/language/localized_string
                                            142. +
                                            143. model/merchant/merchant
                                            144. +
                                            145. model/merchant/merchant_authorization
                                            146. +
                                            147. model/merchant/merchant_details
                                            148. +
                                            149. model/payer/payer
                                            150. +
                                            151. model/payer/payer_address
                                            152. +
                                            153. model/payer/payer_context
                                            154. +
                                            155. model/paymentChannel/payment_channel
                                            156. +
                                            157. model/paymentChannel/payment_constraint
                                            158. +
                                            159. model/paymentChannel/payment_group
                                            160. +
                                            161. model/paymentMethod/automatic_payment_methods
                                            162. +
                                            163. model/paymentMethod/blik_alias
                                            164. +
                                            165. model/paymentMethod/credit_card_brand
                                            166. +
                                            167. model/paymentMethod/digital_wallet
                                            168. +
                                            169. model/paymentMethod/installment_payment
                                            170. +
                                            171. model/paymentMethod/payment_method
                                            172. +
                                            173. model/paymentMethod/payment_methods
                                            174. +
                                            175. model/paymentMethod/tokenized_card
                                            176. +
                                            177. model/result/google_pay_configure_result
                                            178. +
                                            179. model/result/google_pay_open_result
                                            180. +
                                            181. model/result/payment_channels_result
                                            182. +
                                            183. model/result/result
                                            184. +
                                            185. model/result/screenless_result
                                            186. +
                                            187. model/screenless/ambiguous_alias
                                            188. +
                                            189. model/screenless/ambiguous_blik_payment
                                            190. +
                                            191. model/screenless/apple_pay_payment
                                            192. +
                                            193. model/screenless/blik_payment
                                            194. +
                                            195. model/screenless/callbacks
                                            196. +
                                            197. model/screenless/credit_card
                                            198. +
                                            199. model/screenless/credit_card_config
                                            200. +
                                            201. model/screenless/credit_card_payment
                                            202. +
                                            203. model/screenless/expiration_date
                                            204. +
                                            205. model/screenless/google_pay_environment
                                            206. +
                                            207. model/screenless/google_pay_payment
                                            208. +
                                            209. model/screenless/google_pay_utils_configuration
                                            210. +
                                            211. model/screenless/notifications
                                            212. +
                                            213. model/screenless/pay_po_payment
                                            214. +
                                            215. model/screenless/payment_details
                                            216. +
                                            217. model/screenless/raty_pekao_payment
                                            218. +
                                            219. model/screenless/recursive
                                            220. +
                                            221. model/screenless/redirects
                                            222. +
                                            223. model/screenless/screenless_payment
                                            224. +
                                            225. model/screenless/transfer_method
                                            226. +
                                            227. model/screenless/transfer_payment
                                            228. +
                                            229. model/tokenization/tokenization
                                            230. +
                                            231. model/tpay_configuration
                                            232. +
                                            233. model/tpay_environment
                                            234. +
                                            235. model/transaction/single_transaction
                                            236. +
                                            237. model/transaction/token_payment
                                            238. +
                                            239. model/transaction/transaction
                                            240. +
                                            241. model/wallet_configuration
                                            242. +
                                            243. tpay_button
                                            244. +
                                            245. tpay_method_channel
                                            246. +
                                            247. tpay_platform_interface
                                            248. +
                                            249. util/google_pay_configuration_util
                                            250. +
                                            251. util/google_pay_util
                                            252. +
                                            253. util/payment_channels_util
                                            254. +
                                            255. util/result_util
                                            256. +
                                            257. util/screenless_result_util
                                            @@ -176,7 +173,7 @@
                                            payer_context library
                                            flutter_tpay - 1.2.1 + 1.2.8
                                            diff --git a/doc/model_payer_payer_context/model_payer_payer_context-library-sidebar.html b/doc/model_payer_payer_context/model_payer_payer_context-library-sidebar.html index 6726e0db..58c75978 100644 --- a/doc/model_payer_payer_context/model_payer_payer_context-library-sidebar.html +++ b/doc/model_payer_payer_context/model_payer_payer_context-library-sidebar.html @@ -1,5 +1,5 @@
                                              -
                                            1. Classes
                                            2. +
                                            3. Classes
                                            4. PayerContext
                                            5. diff --git a/doc/model_payer_payer_context/model_payer_payer_context-library.html b/doc/model_payer_payer_context/model_payer_payer_context-library.html index fcb2327f..6fd9778d 100644 --- a/doc/model_payer_payer_context/model_payer_payer_context-library.html +++ b/doc/model_payer_payer_context/model_payer_payer_context-library.html @@ -1,10 +1,10 @@ - - + + -

                                              New URL

                                              +

                                              New URL

                                              \ No newline at end of file diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel-class-sidebar.html b/doc/model_paymentChannel_payment_channel/PaymentChannel-class-sidebar.html index 619d0ee0..b9f9881e 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel-class-sidebar.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel-class-sidebar.html @@ -1,7 +1,7 @@
                                              1. Constructors
                                              2. -
                                              3. PaymentChannel
                                              4. +
                                              5. new
                                              6. fromJson
                                              7. diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel-class.html b/doc/model_paymentChannel_payment_channel/PaymentChannel-class.html index 6afbf87a..8452e51b 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel-class.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel-class.html @@ -25,24 +25,21 @@ menu
                                                PaymentChannel
                                                -
                                                - -
                                                +
                                                PaymentChannel class
                                                Annotations
                                                @@ -92,7 +89,7 @@

                                                PaymentChannel class

                                                Constructors

                                                -
                                                +
                                                PaymentChannel({required String id, required String name, required String imageUrl, required List<PaymentConstraint> constraints})
                                                @@ -270,7 +267,7 @@

                                                Operators

                                                @@ -283,7 +280,7 @@
                                                payment_channel library
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.fromJson.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.fromJson.html index 99d6850e..b5c5da4a 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.fromJson.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                - -
                                                +
                                                Implementation

                                                @@ -94,7 +91,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.html index c3ba7b51..d9221501 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.html @@ -4,8 +4,8 @@ - - PaymentChannel constructor - PaymentChannel - payment_channel library - Dart API + + PaymentChannel.new constructor - PaymentChannel - payment_channel library - Dart API @@ -25,25 +25,22 @@ menu -
                                                PaymentChannel
                                                +
                                                PaymentChannel.new
                                                -
                                                - -
                                                +
                                                Implementation
                                                PaymentChannel class
                                                @@ -102,7 +99,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/constraints.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/constraints.html index d472c02f..2b546ae3 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/constraints.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/constraints.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                - -
                                                +
                                                Implementation @@ -97,7 +94,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/id.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/id.html index 9f1fec48..5ac356b8 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/id.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/id.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                - -
                                                +
                                                Implementation @@ -97,7 +94,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/imageUrl.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/imageUrl.html index 554bbfad..28c3b6b6 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/imageUrl.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/imageUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                - -
                                                +
                                                Implementation @@ -97,7 +94,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/name.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/name.html index ffeac451..1245d399 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/name.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/name.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                - -
                                                +
                                                Implementation @@ -97,7 +94,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/toJson.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/toJson.html index d31568aa..9fb6f195 100644 --- a/doc/model_paymentChannel_payment_channel/PaymentChannel/toJson.html +++ b/doc/model_paymentChannel_payment_channel/PaymentChannel/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                - -
                                                +
                                                Implementation @@ -97,7 +94,7 @@
                                                PaymentChannel class
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/index.html b/doc/model_paymentChannel_payment_channel/index.html index 2e977cc3..3fed4315 100644 --- a/doc/model_paymentChannel_payment_channel/index.html +++ b/doc/model_paymentChannel_payment_channel/index.html @@ -31,17 +31,14 @@ -
                                                - -
                                                +
                                                Classes
                                                flutter_tpay package
                                                1. Libraries
                                                2. -
                                                3. model/apple_pay_configuration
                                                4. -
                                                5. model/certificate_pinning_configuration
                                                6. -
                                                7. model/google_pay_configuration
                                                8. -
                                                9. model/language/language
                                                10. -
                                                11. model/language/languages
                                                12. -
                                                13. model/language/localized_string
                                                14. -
                                                15. model/merchant/merchant
                                                16. -
                                                17. model/merchant/merchant_authorization
                                                18. -
                                                19. model/merchant/merchant_details
                                                20. -
                                                21. model/payer/payer
                                                22. -
                                                23. model/payer/payer_address
                                                24. -
                                                25. model/payer/payer_context
                                                26. -
                                                27. model/paymentChannel/payment_channel
                                                28. -
                                                29. model/paymentChannel/payment_constraint
                                                30. -
                                                31. model/paymentChannel/payment_group
                                                32. -
                                                33. model/paymentMethod/automatic_payment_methods
                                                34. -
                                                35. model/paymentMethod/blik_alias
                                                36. -
                                                37. model/paymentMethod/credit_card_brand
                                                38. -
                                                39. model/paymentMethod/digital_wallet
                                                40. -
                                                41. model/paymentMethod/installment_payment
                                                42. -
                                                43. model/paymentMethod/payment_method
                                                44. -
                                                45. model/paymentMethod/payment_methods
                                                46. -
                                                47. model/paymentMethod/tokenized_card
                                                48. -
                                                49. model/result/google_pay_configure_result
                                                50. -
                                                51. model/result/google_pay_open_result
                                                52. -
                                                53. model/result/payment_channels_result
                                                54. -
                                                55. model/result/result
                                                56. -
                                                57. model/result/screenless_result
                                                58. -
                                                59. model/screenless/ambiguous_alias
                                                60. -
                                                61. model/screenless/ambiguous_blik_payment
                                                62. -
                                                63. model/screenless/apple_pay_payment
                                                64. -
                                                65. model/screenless/blik_payment
                                                66. -
                                                67. model/screenless/callbacks
                                                68. -
                                                69. model/screenless/credit_card
                                                70. -
                                                71. model/screenless/credit_card_config
                                                72. -
                                                73. model/screenless/credit_card_payment
                                                74. -
                                                75. model/screenless/expiration_date
                                                76. -
                                                77. model/screenless/google_pay_environment
                                                78. -
                                                79. model/screenless/google_pay_payment
                                                80. -
                                                81. model/screenless/google_pay_utils_configuration
                                                82. -
                                                83. model/screenless/notifications
                                                84. -
                                                85. model/screenless/pay_po_payment
                                                86. -
                                                87. model/screenless/payment_details
                                                88. -
                                                89. model/screenless/raty_pekao_payment
                                                90. -
                                                91. model/screenless/recursive
                                                92. -
                                                93. model/screenless/redirects
                                                94. -
                                                95. model/screenless/screenless_payment
                                                96. -
                                                97. model/screenless/transfer_method
                                                98. -
                                                99. model/screenless/transfer_payment
                                                100. -
                                                101. model/tokenization/tokenization
                                                102. -
                                                103. model/tpay_configuration
                                                104. -
                                                105. model/tpay_environment
                                                106. -
                                                107. model/transaction/single_transaction
                                                108. -
                                                109. model/transaction/token_payment
                                                110. -
                                                111. model/transaction/transaction
                                                112. -
                                                113. model/wallet_configuration
                                                114. -
                                                115. tpay_button
                                                116. -
                                                117. tpay_method_channel
                                                118. -
                                                119. tpay_platform_interface
                                                120. -
                                                121. util/google_pay_configuration_util
                                                122. -
                                                123. util/google_pay_util
                                                124. -
                                                125. util/payment_channels_util
                                                126. -
                                                127. util/result_util
                                                128. -
                                                129. util/screenless_result_util
                                                130. +
                                                131. model/apple_pay_configuration
                                                132. +
                                                133. model/certificate_pinning_configuration
                                                134. +
                                                135. model/google_pay_configuration
                                                136. +
                                                137. model/language/language
                                                138. +
                                                139. model/language/languages
                                                140. +
                                                141. model/language/localized_string
                                                142. +
                                                143. model/merchant/merchant
                                                144. +
                                                145. model/merchant/merchant_authorization
                                                146. +
                                                147. model/merchant/merchant_details
                                                148. +
                                                149. model/payer/payer
                                                150. +
                                                151. model/payer/payer_address
                                                152. +
                                                153. model/payer/payer_context
                                                154. +
                                                155. model/paymentChannel/payment_channel
                                                156. +
                                                157. model/paymentChannel/payment_constraint
                                                158. +
                                                159. model/paymentChannel/payment_group
                                                160. +
                                                161. model/paymentMethod/automatic_payment_methods
                                                162. +
                                                163. model/paymentMethod/blik_alias
                                                164. +
                                                165. model/paymentMethod/credit_card_brand
                                                166. +
                                                167. model/paymentMethod/digital_wallet
                                                168. +
                                                169. model/paymentMethod/installment_payment
                                                170. +
                                                171. model/paymentMethod/payment_method
                                                172. +
                                                173. model/paymentMethod/payment_methods
                                                174. +
                                                175. model/paymentMethod/tokenized_card
                                                176. +
                                                177. model/result/google_pay_configure_result
                                                178. +
                                                179. model/result/google_pay_open_result
                                                180. +
                                                181. model/result/payment_channels_result
                                                182. +
                                                183. model/result/result
                                                184. +
                                                185. model/result/screenless_result
                                                186. +
                                                187. model/screenless/ambiguous_alias
                                                188. +
                                                189. model/screenless/ambiguous_blik_payment
                                                190. +
                                                191. model/screenless/apple_pay_payment
                                                192. +
                                                193. model/screenless/blik_payment
                                                194. +
                                                195. model/screenless/callbacks
                                                196. +
                                                197. model/screenless/credit_card
                                                198. +
                                                199. model/screenless/credit_card_config
                                                200. +
                                                201. model/screenless/credit_card_payment
                                                202. +
                                                203. model/screenless/expiration_date
                                                204. +
                                                205. model/screenless/google_pay_environment
                                                206. +
                                                207. model/screenless/google_pay_payment
                                                208. +
                                                209. model/screenless/google_pay_utils_configuration
                                                210. +
                                                211. model/screenless/notifications
                                                212. +
                                                213. model/screenless/pay_po_payment
                                                214. +
                                                215. model/screenless/payment_details
                                                216. +
                                                217. model/screenless/raty_pekao_payment
                                                218. +
                                                219. model/screenless/recursive
                                                220. +
                                                221. model/screenless/redirects
                                                222. +
                                                223. model/screenless/screenless_payment
                                                224. +
                                                225. model/screenless/transfer_method
                                                226. +
                                                227. model/screenless/transfer_payment
                                                228. +
                                                229. model/tokenization/tokenization
                                                230. +
                                                231. model/tpay_configuration
                                                232. +
                                                233. model/tpay_environment
                                                234. +
                                                235. model/transaction/single_transaction
                                                236. +
                                                237. model/transaction/token_payment
                                                238. +
                                                239. model/transaction/transaction
                                                240. +
                                                241. model/wallet_configuration
                                                242. +
                                                243. tpay_button
                                                244. +
                                                245. tpay_method_channel
                                                246. +
                                                247. tpay_platform_interface
                                                248. +
                                                249. util/google_pay_configuration_util
                                                250. +
                                                251. util/google_pay_util
                                                252. +
                                                253. util/payment_channels_util
                                                254. +
                                                255. util/result_util
                                                256. +
                                                257. util/screenless_result_util
                                                @@ -176,7 +173,7 @@
                                                payment_channel library
                                                flutter_tpay - 1.2.1 + 1.2.8
                                                diff --git a/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library-sidebar.html b/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library-sidebar.html index 8e73c18a..f5cd48cc 100644 --- a/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library-sidebar.html +++ b/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library-sidebar.html @@ -1,5 +1,5 @@
                                                  -
                                                1. Classes
                                                2. +
                                                3. Classes
                                                4. PaymentChannel
                                                5. diff --git a/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library.html b/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library.html index 70af3b4b..b41fd532 100644 --- a/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library.html +++ b/doc/model_paymentChannel_payment_channel/model_paymentChannel_payment_channel-library.html @@ -1,10 +1,10 @@ - - + + -

                                                  New URL

                                                  +

                                                  New URL

                                                  \ No newline at end of file diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class-sidebar.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class-sidebar.html index fd852372..6db01b30 100644 --- a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class-sidebar.html +++ b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class-sidebar.html @@ -1,7 +1,7 @@
                                                  1. Constructors
                                                  2. -
                                                  3. AmountPaymentConstraint
                                                  4. +
                                                  5. new
                                                  6. diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class.html index a1ac2c57..c7294748 100644 --- a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class.html +++ b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint-class.html @@ -25,24 +25,21 @@ menu
                                                    AmountPaymentConstraint
                                                    -
                                                    - -
                                                    +
                                                    AmountPaymentConstraint class

                                                    Constructors

                                                    -
                                                    +
                                                    AmountPaymentConstraint({required double? minimum, required double? maximum})
                                                    @@ -251,7 +248,7 @@

                                                    Operators

                                                    @@ -264,7 +261,7 @@
                                                    payment_constraint library
                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/AmountPaymentConstraint.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/AmountPaymentConstraint.html index b6e96497..ae9fd5f6 100644 --- a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/AmountPaymentConstraint.html +++ b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/AmountPaymentConstraint.html @@ -4,8 +4,8 @@ - - AmountPaymentConstraint constructor - AmountPaymentConstraint - payment_constraint library - Dart API + + AmountPaymentConstraint.new constructor - AmountPaymentConstraint - payment_constraint library - Dart API @@ -25,25 +25,22 @@ menu -
                                                    AmountPaymentConstraint
                                                    +
                                                    AmountPaymentConstraint.new
                                                    -
                                                    - -
                                                    +
                                                    Implementation
                                                    AmountPaymentConstraint class
                                                    @@ -95,7 +92,7 @@
                                                    AmountPaymentConstraint class
                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/maximum.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/maximum.html index 5430d50b..adf2e4bb 100644 --- a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/maximum.html +++ b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/maximum.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                    - -
                                                    +
                                                    Implementation @@ -97,7 +94,7 @@
                                                    AmountPaymentConstraint class
                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/minimum.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/minimum.html index 569f0bf3..e9d0a0c5 100644 --- a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/minimum.html +++ b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/minimum.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                    - -
                                                    +
                                                    Implementation @@ -97,7 +94,7 @@
                                                    AmountPaymentConstraint class
                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class-sidebar.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class-sidebar.html index ed4594f4..a3746208 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class-sidebar.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class-sidebar.html @@ -1,7 +1,7 @@
                                                    1. Constructors
                                                    2. -
                                                    3. PaymentConstraint
                                                    4. +
                                                    5. new
                                                    6. fromJson
                                                    7. diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class.html index 7104b108..37a356e2 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraint-class.html @@ -25,24 +25,21 @@ menu
                                                      PaymentConstraint
                                                      -
                                                      - -
                                                      +
                                                      PaymentConstraint class
                                                      Annotations
                                                      @@ -93,7 +90,7 @@

                                                      PaymentConstraint class

                                                      Constructors

                                                      -
                                                      +
                                                      PaymentConstraint(PaymentConstraintType type)
                                                      @@ -235,7 +232,7 @@

                                                      Operators

                                                      @@ -248,7 +245,7 @@
                                                      payment_constraint library
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.fromJson.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.fromJson.html index 685434a9..7a61f29b 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.fromJson.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                      - -
                                                      +
                                                      Implementation

                                                      @@ -94,7 +91,7 @@
                                                      PaymentConstraint class
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.html index 8f93cf9a..92ac9a60 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.html @@ -4,8 +4,8 @@ - - PaymentConstraint constructor - PaymentConstraint - payment_constraint library - Dart API + + PaymentConstraint.new constructor - PaymentConstraint - payment_constraint library - Dart API @@ -25,25 +25,22 @@ menu -
                                                      PaymentConstraint
                                                      +
                                                      PaymentConstraint.new
                                                      -
                                                      - -
                                                      +
                                                      Implementation
                                                      PaymentConstraint class
                                                      @@ -94,7 +91,7 @@
                                                      PaymentConstraint class
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/toJson.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/toJson.html index 797b6857..04bf1855 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/toJson.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                      - -
                                                      +
                                                      Implementation @@ -97,7 +94,7 @@
                                                      PaymentConstraint class
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/type.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/type.html index 02f847f6..330faa59 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/type.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/type.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                      - -
                                                      +
                                                      Implementation @@ -97,7 +94,7 @@
                                                      PaymentConstraint class
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraintType.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraintType.html index c3f0806d..81f3d9a6 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraintType.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraintType.html @@ -25,24 +25,21 @@ menu
                                                      PaymentConstraintType
                                                      -
                                                      - -
                                                      +
                                                      Constants @@ -269,7 +266,7 @@
                                                      payment_constraint library
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraintType/values-constant.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraintType/values-constant.html index 05943c77..1177b494 100644 --- a/doc/model_paymentChannel_payment_constraint/PaymentConstraintType/values-constant.html +++ b/doc/model_paymentChannel_payment_constraint/PaymentConstraintType/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                      - -
                                                      +
                                                      values constant @@ -96,7 +93,7 @@
                                                      PaymentConstraintType enum
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/index.html b/doc/model_paymentChannel_payment_constraint/index.html index 0e114394..c6bc066d 100644 --- a/doc/model_paymentChannel_payment_constraint/index.html +++ b/doc/model_paymentChannel_payment_constraint/index.html @@ -31,17 +31,14 @@ -
                                                      - -
                                                      +
                                                      Enums
                                                      flutter_tpay package
                                                      1. Libraries
                                                      2. -
                                                      3. model/apple_pay_configuration
                                                      4. -
                                                      5. model/certificate_pinning_configuration
                                                      6. -
                                                      7. model/google_pay_configuration
                                                      8. -
                                                      9. model/language/language
                                                      10. -
                                                      11. model/language/languages
                                                      12. -
                                                      13. model/language/localized_string
                                                      14. -
                                                      15. model/merchant/merchant
                                                      16. -
                                                      17. model/merchant/merchant_authorization
                                                      18. -
                                                      19. model/merchant/merchant_details
                                                      20. -
                                                      21. model/payer/payer
                                                      22. -
                                                      23. model/payer/payer_address
                                                      24. -
                                                      25. model/payer/payer_context
                                                      26. -
                                                      27. model/paymentChannel/payment_channel
                                                      28. -
                                                      29. model/paymentChannel/payment_constraint
                                                      30. -
                                                      31. model/paymentChannel/payment_group
                                                      32. -
                                                      33. model/paymentMethod/automatic_payment_methods
                                                      34. -
                                                      35. model/paymentMethod/blik_alias
                                                      36. -
                                                      37. model/paymentMethod/credit_card_brand
                                                      38. -
                                                      39. model/paymentMethod/digital_wallet
                                                      40. -
                                                      41. model/paymentMethod/installment_payment
                                                      42. -
                                                      43. model/paymentMethod/payment_method
                                                      44. -
                                                      45. model/paymentMethod/payment_methods
                                                      46. -
                                                      47. model/paymentMethod/tokenized_card
                                                      48. -
                                                      49. model/result/google_pay_configure_result
                                                      50. -
                                                      51. model/result/google_pay_open_result
                                                      52. -
                                                      53. model/result/payment_channels_result
                                                      54. -
                                                      55. model/result/result
                                                      56. -
                                                      57. model/result/screenless_result
                                                      58. -
                                                      59. model/screenless/ambiguous_alias
                                                      60. -
                                                      61. model/screenless/ambiguous_blik_payment
                                                      62. -
                                                      63. model/screenless/apple_pay_payment
                                                      64. -
                                                      65. model/screenless/blik_payment
                                                      66. -
                                                      67. model/screenless/callbacks
                                                      68. -
                                                      69. model/screenless/credit_card
                                                      70. -
                                                      71. model/screenless/credit_card_config
                                                      72. -
                                                      73. model/screenless/credit_card_payment
                                                      74. -
                                                      75. model/screenless/expiration_date
                                                      76. -
                                                      77. model/screenless/google_pay_environment
                                                      78. -
                                                      79. model/screenless/google_pay_payment
                                                      80. -
                                                      81. model/screenless/google_pay_utils_configuration
                                                      82. -
                                                      83. model/screenless/notifications
                                                      84. -
                                                      85. model/screenless/pay_po_payment
                                                      86. -
                                                      87. model/screenless/payment_details
                                                      88. -
                                                      89. model/screenless/raty_pekao_payment
                                                      90. -
                                                      91. model/screenless/recursive
                                                      92. -
                                                      93. model/screenless/redirects
                                                      94. -
                                                      95. model/screenless/screenless_payment
                                                      96. -
                                                      97. model/screenless/transfer_method
                                                      98. -
                                                      99. model/screenless/transfer_payment
                                                      100. -
                                                      101. model/tokenization/tokenization
                                                      102. -
                                                      103. model/tpay_configuration
                                                      104. -
                                                      105. model/tpay_environment
                                                      106. -
                                                      107. model/transaction/single_transaction
                                                      108. -
                                                      109. model/transaction/token_payment
                                                      110. -
                                                      111. model/transaction/transaction
                                                      112. -
                                                      113. model/wallet_configuration
                                                      114. -
                                                      115. tpay_button
                                                      116. -
                                                      117. tpay_method_channel
                                                      118. -
                                                      119. tpay_platform_interface
                                                      120. -
                                                      121. util/google_pay_configuration_util
                                                      122. -
                                                      123. util/google_pay_util
                                                      124. -
                                                      125. util/payment_channels_util
                                                      126. -
                                                      127. util/result_util
                                                      128. -
                                                      129. util/screenless_result_util
                                                      130. +
                                                      131. model/apple_pay_configuration
                                                      132. +
                                                      133. model/certificate_pinning_configuration
                                                      134. +
                                                      135. model/google_pay_configuration
                                                      136. +
                                                      137. model/language/language
                                                      138. +
                                                      139. model/language/languages
                                                      140. +
                                                      141. model/language/localized_string
                                                      142. +
                                                      143. model/merchant/merchant
                                                      144. +
                                                      145. model/merchant/merchant_authorization
                                                      146. +
                                                      147. model/merchant/merchant_details
                                                      148. +
                                                      149. model/payer/payer
                                                      150. +
                                                      151. model/payer/payer_address
                                                      152. +
                                                      153. model/payer/payer_context
                                                      154. +
                                                      155. model/paymentChannel/payment_channel
                                                      156. +
                                                      157. model/paymentChannel/payment_constraint
                                                      158. +
                                                      159. model/paymentChannel/payment_group
                                                      160. +
                                                      161. model/paymentMethod/automatic_payment_methods
                                                      162. +
                                                      163. model/paymentMethod/blik_alias
                                                      164. +
                                                      165. model/paymentMethod/credit_card_brand
                                                      166. +
                                                      167. model/paymentMethod/digital_wallet
                                                      168. +
                                                      169. model/paymentMethod/installment_payment
                                                      170. +
                                                      171. model/paymentMethod/payment_method
                                                      172. +
                                                      173. model/paymentMethod/payment_methods
                                                      174. +
                                                      175. model/paymentMethod/tokenized_card
                                                      176. +
                                                      177. model/result/google_pay_configure_result
                                                      178. +
                                                      179. model/result/google_pay_open_result
                                                      180. +
                                                      181. model/result/payment_channels_result
                                                      182. +
                                                      183. model/result/result
                                                      184. +
                                                      185. model/result/screenless_result
                                                      186. +
                                                      187. model/screenless/ambiguous_alias
                                                      188. +
                                                      189. model/screenless/ambiguous_blik_payment
                                                      190. +
                                                      191. model/screenless/apple_pay_payment
                                                      192. +
                                                      193. model/screenless/blik_payment
                                                      194. +
                                                      195. model/screenless/callbacks
                                                      196. +
                                                      197. model/screenless/credit_card
                                                      198. +
                                                      199. model/screenless/credit_card_config
                                                      200. +
                                                      201. model/screenless/credit_card_payment
                                                      202. +
                                                      203. model/screenless/expiration_date
                                                      204. +
                                                      205. model/screenless/google_pay_environment
                                                      206. +
                                                      207. model/screenless/google_pay_payment
                                                      208. +
                                                      209. model/screenless/google_pay_utils_configuration
                                                      210. +
                                                      211. model/screenless/notifications
                                                      212. +
                                                      213. model/screenless/pay_po_payment
                                                      214. +
                                                      215. model/screenless/payment_details
                                                      216. +
                                                      217. model/screenless/raty_pekao_payment
                                                      218. +
                                                      219. model/screenless/recursive
                                                      220. +
                                                      221. model/screenless/redirects
                                                      222. +
                                                      223. model/screenless/screenless_payment
                                                      224. +
                                                      225. model/screenless/transfer_method
                                                      226. +
                                                      227. model/screenless/transfer_payment
                                                      228. +
                                                      229. model/tokenization/tokenization
                                                      230. +
                                                      231. model/tpay_configuration
                                                      232. +
                                                      233. model/tpay_environment
                                                      234. +
                                                      235. model/transaction/single_transaction
                                                      236. +
                                                      237. model/transaction/token_payment
                                                      238. +
                                                      239. model/transaction/transaction
                                                      240. +
                                                      241. model/wallet_configuration
                                                      242. +
                                                      243. tpay_button
                                                      244. +
                                                      245. tpay_method_channel
                                                      246. +
                                                      247. tpay_platform_interface
                                                      248. +
                                                      249. util/google_pay_configuration_util
                                                      250. +
                                                      251. util/google_pay_util
                                                      252. +
                                                      253. util/payment_channels_util
                                                      254. +
                                                      255. util/result_util
                                                      256. +
                                                      257. util/screenless_result_util
                                                      @@ -197,7 +194,7 @@
                                                      payment_constraint library
                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library-sidebar.html b/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library-sidebar.html index 15064575..a2938af0 100644 --- a/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library-sidebar.html +++ b/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library-sidebar.html @@ -1,9 +1,9 @@
                                                        -
                                                      1. Classes
                                                      2. +
                                                      3. Classes
                                                      4. AmountPaymentConstraint
                                                      5. PaymentConstraint
                                                      6. -
                                                      7. Enums
                                                      8. +
                                                      9. Enums
                                                      10. PaymentConstraintType
                                                      11. diff --git a/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library.html b/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library.html index a35d74fc..f2087227 100644 --- a/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library.html +++ b/doc/model_paymentChannel_payment_constraint/model_paymentChannel_payment_constraint-library.html @@ -1,10 +1,10 @@ - - + + -

                                                        New URL

                                                        +

                                                        New URL

                                                        \ No newline at end of file diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup-class-sidebar.html b/doc/model_paymentChannel_payment_group/PaymentGroup-class-sidebar.html index 8b79ae36..1acce828 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup-class-sidebar.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup-class-sidebar.html @@ -1,7 +1,7 @@
                                                        1. Constructors
                                                        2. -
                                                        3. PaymentGroup
                                                        4. +
                                                        5. new
                                                        6. fromJson
                                                        7. diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup-class.html b/doc/model_paymentChannel_payment_group/PaymentGroup-class.html index 7c46f835..a373c5a0 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup-class.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup-class.html @@ -25,24 +25,21 @@ menu
                                                          PaymentGroup
                                                          -
                                                          - -
                                                          +
                                                          PaymentGroup class
                                                          Annotations
                                                          @@ -91,7 +88,7 @@

                                                          PaymentGroup class

                                                          Constructors

                                                          -
                                                          +
                                                          PaymentGroup({required String id, required String name, required String imageUrl})
                                                          @@ -257,7 +254,7 @@

                                                          Operators

                                                          @@ -270,7 +267,7 @@
                                                          payment_group library
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.fromJson.html b/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.fromJson.html index 62f72d4c..4b49149a 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.fromJson.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                          - -
                                                          +
                                                          Implementation

                                                          @@ -94,7 +91,7 @@
                                                          PaymentGroup class
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.html b/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.html index 2fbcd2c7..c53b1dbb 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.html @@ -4,8 +4,8 @@ - - PaymentGroup constructor - PaymentGroup - payment_group library - Dart API + + PaymentGroup.new constructor - PaymentGroup - payment_group library - Dart API @@ -25,25 +25,22 @@ menu -
                                                          PaymentGroup
                                                          +
                                                          PaymentGroup.new
                                                          -
                                                          - -
                                                          +
                                                          Implementation
                                                          PaymentGroup class
                                                          @@ -100,7 +97,7 @@
                                                          PaymentGroup class
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/id.html b/doc/model_paymentChannel_payment_group/PaymentGroup/id.html index 009577a7..bc64b816 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup/id.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup/id.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                          - -
                                                          +
                                                          Implementation @@ -97,7 +94,7 @@
                                                          PaymentGroup class
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/imageUrl.html b/doc/model_paymentChannel_payment_group/PaymentGroup/imageUrl.html index 0c794fcd..9d0f62fe 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup/imageUrl.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup/imageUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                          - -
                                                          +
                                                          Implementation @@ -97,7 +94,7 @@
                                                          PaymentGroup class
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/name.html b/doc/model_paymentChannel_payment_group/PaymentGroup/name.html index 5eb47859..1c9fcaab 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup/name.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup/name.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                          - -
                                                          +
                                                          Implementation @@ -97,7 +94,7 @@
                                                          PaymentGroup class
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/toJson.html b/doc/model_paymentChannel_payment_group/PaymentGroup/toJson.html index 65a251f7..b54a52de 100644 --- a/doc/model_paymentChannel_payment_group/PaymentGroup/toJson.html +++ b/doc/model_paymentChannel_payment_group/PaymentGroup/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                          - -
                                                          +
                                                          Implementation @@ -97,7 +94,7 @@
                                                          PaymentGroup class
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/index.html b/doc/model_paymentChannel_payment_group/index.html index 346ca956..dae128f0 100644 --- a/doc/model_paymentChannel_payment_group/index.html +++ b/doc/model_paymentChannel_payment_group/index.html @@ -31,17 +31,14 @@ -
                                                          - -
                                                          +
                                                          Classes
                                                          flutter_tpay package
                                                          1. Libraries
                                                          2. -
                                                          3. model/apple_pay_configuration
                                                          4. -
                                                          5. model/certificate_pinning_configuration
                                                          6. -
                                                          7. model/google_pay_configuration
                                                          8. -
                                                          9. model/language/language
                                                          10. -
                                                          11. model/language/languages
                                                          12. -
                                                          13. model/language/localized_string
                                                          14. -
                                                          15. model/merchant/merchant
                                                          16. -
                                                          17. model/merchant/merchant_authorization
                                                          18. -
                                                          19. model/merchant/merchant_details
                                                          20. -
                                                          21. model/payer/payer
                                                          22. -
                                                          23. model/payer/payer_address
                                                          24. -
                                                          25. model/payer/payer_context
                                                          26. -
                                                          27. model/paymentChannel/payment_channel
                                                          28. -
                                                          29. model/paymentChannel/payment_constraint
                                                          30. -
                                                          31. model/paymentChannel/payment_group
                                                          32. -
                                                          33. model/paymentMethod/automatic_payment_methods
                                                          34. -
                                                          35. model/paymentMethod/blik_alias
                                                          36. -
                                                          37. model/paymentMethod/credit_card_brand
                                                          38. -
                                                          39. model/paymentMethod/digital_wallet
                                                          40. -
                                                          41. model/paymentMethod/installment_payment
                                                          42. -
                                                          43. model/paymentMethod/payment_method
                                                          44. -
                                                          45. model/paymentMethod/payment_methods
                                                          46. -
                                                          47. model/paymentMethod/tokenized_card
                                                          48. -
                                                          49. model/result/google_pay_configure_result
                                                          50. -
                                                          51. model/result/google_pay_open_result
                                                          52. -
                                                          53. model/result/payment_channels_result
                                                          54. -
                                                          55. model/result/result
                                                          56. -
                                                          57. model/result/screenless_result
                                                          58. -
                                                          59. model/screenless/ambiguous_alias
                                                          60. -
                                                          61. model/screenless/ambiguous_blik_payment
                                                          62. -
                                                          63. model/screenless/apple_pay_payment
                                                          64. -
                                                          65. model/screenless/blik_payment
                                                          66. -
                                                          67. model/screenless/callbacks
                                                          68. -
                                                          69. model/screenless/credit_card
                                                          70. -
                                                          71. model/screenless/credit_card_config
                                                          72. -
                                                          73. model/screenless/credit_card_payment
                                                          74. -
                                                          75. model/screenless/expiration_date
                                                          76. -
                                                          77. model/screenless/google_pay_environment
                                                          78. -
                                                          79. model/screenless/google_pay_payment
                                                          80. -
                                                          81. model/screenless/google_pay_utils_configuration
                                                          82. -
                                                          83. model/screenless/notifications
                                                          84. -
                                                          85. model/screenless/pay_po_payment
                                                          86. -
                                                          87. model/screenless/payment_details
                                                          88. -
                                                          89. model/screenless/raty_pekao_payment
                                                          90. -
                                                          91. model/screenless/recursive
                                                          92. -
                                                          93. model/screenless/redirects
                                                          94. -
                                                          95. model/screenless/screenless_payment
                                                          96. -
                                                          97. model/screenless/transfer_method
                                                          98. -
                                                          99. model/screenless/transfer_payment
                                                          100. -
                                                          101. model/tokenization/tokenization
                                                          102. -
                                                          103. model/tpay_configuration
                                                          104. -
                                                          105. model/tpay_environment
                                                          106. -
                                                          107. model/transaction/single_transaction
                                                          108. -
                                                          109. model/transaction/token_payment
                                                          110. -
                                                          111. model/transaction/transaction
                                                          112. -
                                                          113. model/wallet_configuration
                                                          114. -
                                                          115. tpay_button
                                                          116. -
                                                          117. tpay_method_channel
                                                          118. -
                                                          119. tpay_platform_interface
                                                          120. -
                                                          121. util/google_pay_configuration_util
                                                          122. -
                                                          123. util/google_pay_util
                                                          124. -
                                                          125. util/payment_channels_util
                                                          126. -
                                                          127. util/result_util
                                                          128. -
                                                          129. util/screenless_result_util
                                                          130. +
                                                          131. model/apple_pay_configuration
                                                          132. +
                                                          133. model/certificate_pinning_configuration
                                                          134. +
                                                          135. model/google_pay_configuration
                                                          136. +
                                                          137. model/language/language
                                                          138. +
                                                          139. model/language/languages
                                                          140. +
                                                          141. model/language/localized_string
                                                          142. +
                                                          143. model/merchant/merchant
                                                          144. +
                                                          145. model/merchant/merchant_authorization
                                                          146. +
                                                          147. model/merchant/merchant_details
                                                          148. +
                                                          149. model/payer/payer
                                                          150. +
                                                          151. model/payer/payer_address
                                                          152. +
                                                          153. model/payer/payer_context
                                                          154. +
                                                          155. model/paymentChannel/payment_channel
                                                          156. +
                                                          157. model/paymentChannel/payment_constraint
                                                          158. +
                                                          159. model/paymentChannel/payment_group
                                                          160. +
                                                          161. model/paymentMethod/automatic_payment_methods
                                                          162. +
                                                          163. model/paymentMethod/blik_alias
                                                          164. +
                                                          165. model/paymentMethod/credit_card_brand
                                                          166. +
                                                          167. model/paymentMethod/digital_wallet
                                                          168. +
                                                          169. model/paymentMethod/installment_payment
                                                          170. +
                                                          171. model/paymentMethod/payment_method
                                                          172. +
                                                          173. model/paymentMethod/payment_methods
                                                          174. +
                                                          175. model/paymentMethod/tokenized_card
                                                          176. +
                                                          177. model/result/google_pay_configure_result
                                                          178. +
                                                          179. model/result/google_pay_open_result
                                                          180. +
                                                          181. model/result/payment_channels_result
                                                          182. +
                                                          183. model/result/result
                                                          184. +
                                                          185. model/result/screenless_result
                                                          186. +
                                                          187. model/screenless/ambiguous_alias
                                                          188. +
                                                          189. model/screenless/ambiguous_blik_payment
                                                          190. +
                                                          191. model/screenless/apple_pay_payment
                                                          192. +
                                                          193. model/screenless/blik_payment
                                                          194. +
                                                          195. model/screenless/callbacks
                                                          196. +
                                                          197. model/screenless/credit_card
                                                          198. +
                                                          199. model/screenless/credit_card_config
                                                          200. +
                                                          201. model/screenless/credit_card_payment
                                                          202. +
                                                          203. model/screenless/expiration_date
                                                          204. +
                                                          205. model/screenless/google_pay_environment
                                                          206. +
                                                          207. model/screenless/google_pay_payment
                                                          208. +
                                                          209. model/screenless/google_pay_utils_configuration
                                                          210. +
                                                          211. model/screenless/notifications
                                                          212. +
                                                          213. model/screenless/pay_po_payment
                                                          214. +
                                                          215. model/screenless/payment_details
                                                          216. +
                                                          217. model/screenless/raty_pekao_payment
                                                          218. +
                                                          219. model/screenless/recursive
                                                          220. +
                                                          221. model/screenless/redirects
                                                          222. +
                                                          223. model/screenless/screenless_payment
                                                          224. +
                                                          225. model/screenless/transfer_method
                                                          226. +
                                                          227. model/screenless/transfer_payment
                                                          228. +
                                                          229. model/tokenization/tokenization
                                                          230. +
                                                          231. model/tpay_configuration
                                                          232. +
                                                          233. model/tpay_environment
                                                          234. +
                                                          235. model/transaction/single_transaction
                                                          236. +
                                                          237. model/transaction/token_payment
                                                          238. +
                                                          239. model/transaction/transaction
                                                          240. +
                                                          241. model/wallet_configuration
                                                          242. +
                                                          243. tpay_button
                                                          244. +
                                                          245. tpay_method_channel
                                                          246. +
                                                          247. tpay_platform_interface
                                                          248. +
                                                          249. util/google_pay_configuration_util
                                                          250. +
                                                          251. util/google_pay_util
                                                          252. +
                                                          253. util/payment_channels_util
                                                          254. +
                                                          255. util/result_util
                                                          256. +
                                                          257. util/screenless_result_util
                                                          @@ -176,7 +173,7 @@
                                                          payment_group library
                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                          diff --git a/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library-sidebar.html b/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library-sidebar.html index 58a7a1ae..ad3d02f2 100644 --- a/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library-sidebar.html +++ b/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library-sidebar.html @@ -1,5 +1,5 @@
                                                            -
                                                          1. Classes
                                                          2. +
                                                          3. Classes
                                                          4. PaymentGroup
                                                          5. diff --git a/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library.html b/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library.html index b702bab5..432fa640 100644 --- a/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library.html +++ b/doc/model_paymentChannel_payment_group/model_paymentChannel_payment_group-library.html @@ -1,10 +1,10 @@ - - + + -

                                                            New URL

                                                            +

                                                            New URL

                                                            \ No newline at end of file diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class-sidebar.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class-sidebar.html index b8320fd6..0f5c33d8 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class-sidebar.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class-sidebar.html @@ -1,7 +1,7 @@
                                                            1. Constructors
                                                            2. -
                                                            3. AutomaticPaymentMethods
                                                            4. +
                                                            5. new
                                                            6. fromJson
                                                            7. diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class.html index 96395af2..cd72705d 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods-class.html @@ -25,24 +25,21 @@ menu
                                                              AutomaticPaymentMethods
                                                              -
                                                              - -
                                                              +
                                                              AutomaticPaymentMethods class
                                                              Annotations
                                                              @@ -87,7 +84,7 @@

                                                              AutomaticPaymentMethods class

                                                              Constructors

                                                              -
                                                              +
                                                              AutomaticPaymentMethods({required List<TokenizedCard>? tokenizedCards, required BlikAlias? blikAlias})
                                                              @@ -241,7 +238,7 @@

                                                              Operators

                                                              @@ -254,7 +251,7 @@
                                                              automatic_payment_methods library
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.fromJson.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.fromJson.html index 421bdaef..166b2aba 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.fromJson.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                              - -
                                                              +
                                                              Implementation

                                                              @@ -94,7 +91,7 @@
                                                              AutomaticPaymentMethods class
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.html index 0ce56535..1950f175 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.html @@ -4,8 +4,8 @@ - - AutomaticPaymentMethods constructor - AutomaticPaymentMethods - automatic_payment_methods library - Dart API + + AutomaticPaymentMethods.new constructor - AutomaticPaymentMethods - automatic_payment_methods library - Dart API @@ -25,25 +25,22 @@ menu -
                                                              AutomaticPaymentMethods
                                                              +
                                                              AutomaticPaymentMethods.new
                                                              -
                                                              - -
                                                              +
                                                              Implementation
                                                              AutomaticPaymentMethods class
                                                              @@ -95,7 +92,7 @@
                                                              AutomaticPaymentMethods class
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/blikAlias.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/blikAlias.html index e14ae502..359b542c 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/blikAlias.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/blikAlias.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                              - -
                                                              +
                                                              Implementation @@ -97,7 +94,7 @@
                                                              AutomaticPaymentMethods class
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/toJson.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/toJson.html index aa27ec3a..e14c4a24 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/toJson.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                              - -
                                                              +
                                                              Implementation @@ -97,7 +94,7 @@
                                                              AutomaticPaymentMethods class
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/tokenizedCards.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/tokenizedCards.html index b936ad86..b6ce4ae1 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/tokenizedCards.html +++ b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/tokenizedCards.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                              - -
                                                              +
                                                              Implementation @@ -97,7 +94,7 @@
                                                              AutomaticPaymentMethods class
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/index.html b/doc/model_paymentMethod_automatic_payment_methods/index.html index 773db2cd..eb022c08 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/index.html +++ b/doc/model_paymentMethod_automatic_payment_methods/index.html @@ -31,17 +31,14 @@ -
                                                              - -
                                                              +
                                                              Classes
                                                              flutter_tpay package
                                                              1. Libraries
                                                              2. -
                                                              3. model/apple_pay_configuration
                                                              4. -
                                                              5. model/certificate_pinning_configuration
                                                              6. -
                                                              7. model/google_pay_configuration
                                                              8. -
                                                              9. model/language/language
                                                              10. -
                                                              11. model/language/languages
                                                              12. -
                                                              13. model/language/localized_string
                                                              14. -
                                                              15. model/merchant/merchant
                                                              16. -
                                                              17. model/merchant/merchant_authorization
                                                              18. -
                                                              19. model/merchant/merchant_details
                                                              20. -
                                                              21. model/payer/payer
                                                              22. -
                                                              23. model/payer/payer_address
                                                              24. -
                                                              25. model/payer/payer_context
                                                              26. -
                                                              27. model/paymentChannel/payment_channel
                                                              28. -
                                                              29. model/paymentChannel/payment_constraint
                                                              30. -
                                                              31. model/paymentChannel/payment_group
                                                              32. -
                                                              33. model/paymentMethod/automatic_payment_methods
                                                              34. -
                                                              35. model/paymentMethod/blik_alias
                                                              36. -
                                                              37. model/paymentMethod/credit_card_brand
                                                              38. -
                                                              39. model/paymentMethod/digital_wallet
                                                              40. -
                                                              41. model/paymentMethod/installment_payment
                                                              42. -
                                                              43. model/paymentMethod/payment_method
                                                              44. -
                                                              45. model/paymentMethod/payment_methods
                                                              46. -
                                                              47. model/paymentMethod/tokenized_card
                                                              48. -
                                                              49. model/result/google_pay_configure_result
                                                              50. -
                                                              51. model/result/google_pay_open_result
                                                              52. -
                                                              53. model/result/payment_channels_result
                                                              54. -
                                                              55. model/result/result
                                                              56. -
                                                              57. model/result/screenless_result
                                                              58. -
                                                              59. model/screenless/ambiguous_alias
                                                              60. -
                                                              61. model/screenless/ambiguous_blik_payment
                                                              62. -
                                                              63. model/screenless/apple_pay_payment
                                                              64. -
                                                              65. model/screenless/blik_payment
                                                              66. -
                                                              67. model/screenless/callbacks
                                                              68. -
                                                              69. model/screenless/credit_card
                                                              70. -
                                                              71. model/screenless/credit_card_config
                                                              72. -
                                                              73. model/screenless/credit_card_payment
                                                              74. -
                                                              75. model/screenless/expiration_date
                                                              76. -
                                                              77. model/screenless/google_pay_environment
                                                              78. -
                                                              79. model/screenless/google_pay_payment
                                                              80. -
                                                              81. model/screenless/google_pay_utils_configuration
                                                              82. -
                                                              83. model/screenless/notifications
                                                              84. -
                                                              85. model/screenless/pay_po_payment
                                                              86. -
                                                              87. model/screenless/payment_details
                                                              88. -
                                                              89. model/screenless/raty_pekao_payment
                                                              90. -
                                                              91. model/screenless/recursive
                                                              92. -
                                                              93. model/screenless/redirects
                                                              94. -
                                                              95. model/screenless/screenless_payment
                                                              96. -
                                                              97. model/screenless/transfer_method
                                                              98. -
                                                              99. model/screenless/transfer_payment
                                                              100. -
                                                              101. model/tokenization/tokenization
                                                              102. -
                                                              103. model/tpay_configuration
                                                              104. -
                                                              105. model/tpay_environment
                                                              106. -
                                                              107. model/transaction/single_transaction
                                                              108. -
                                                              109. model/transaction/token_payment
                                                              110. -
                                                              111. model/transaction/transaction
                                                              112. -
                                                              113. model/wallet_configuration
                                                              114. -
                                                              115. tpay_button
                                                              116. -
                                                              117. tpay_method_channel
                                                              118. -
                                                              119. tpay_platform_interface
                                                              120. -
                                                              121. util/google_pay_configuration_util
                                                              122. -
                                                              123. util/google_pay_util
                                                              124. -
                                                              125. util/payment_channels_util
                                                              126. -
                                                              127. util/result_util
                                                              128. -
                                                              129. util/screenless_result_util
                                                              130. +
                                                              131. model/apple_pay_configuration
                                                              132. +
                                                              133. model/certificate_pinning_configuration
                                                              134. +
                                                              135. model/google_pay_configuration
                                                              136. +
                                                              137. model/language/language
                                                              138. +
                                                              139. model/language/languages
                                                              140. +
                                                              141. model/language/localized_string
                                                              142. +
                                                              143. model/merchant/merchant
                                                              144. +
                                                              145. model/merchant/merchant_authorization
                                                              146. +
                                                              147. model/merchant/merchant_details
                                                              148. +
                                                              149. model/payer/payer
                                                              150. +
                                                              151. model/payer/payer_address
                                                              152. +
                                                              153. model/payer/payer_context
                                                              154. +
                                                              155. model/paymentChannel/payment_channel
                                                              156. +
                                                              157. model/paymentChannel/payment_constraint
                                                              158. +
                                                              159. model/paymentChannel/payment_group
                                                              160. +
                                                              161. model/paymentMethod/automatic_payment_methods
                                                              162. +
                                                              163. model/paymentMethod/blik_alias
                                                              164. +
                                                              165. model/paymentMethod/credit_card_brand
                                                              166. +
                                                              167. model/paymentMethod/digital_wallet
                                                              168. +
                                                              169. model/paymentMethod/installment_payment
                                                              170. +
                                                              171. model/paymentMethod/payment_method
                                                              172. +
                                                              173. model/paymentMethod/payment_methods
                                                              174. +
                                                              175. model/paymentMethod/tokenized_card
                                                              176. +
                                                              177. model/result/google_pay_configure_result
                                                              178. +
                                                              179. model/result/google_pay_open_result
                                                              180. +
                                                              181. model/result/payment_channels_result
                                                              182. +
                                                              183. model/result/result
                                                              184. +
                                                              185. model/result/screenless_result
                                                              186. +
                                                              187. model/screenless/ambiguous_alias
                                                              188. +
                                                              189. model/screenless/ambiguous_blik_payment
                                                              190. +
                                                              191. model/screenless/apple_pay_payment
                                                              192. +
                                                              193. model/screenless/blik_payment
                                                              194. +
                                                              195. model/screenless/callbacks
                                                              196. +
                                                              197. model/screenless/credit_card
                                                              198. +
                                                              199. model/screenless/credit_card_config
                                                              200. +
                                                              201. model/screenless/credit_card_payment
                                                              202. +
                                                              203. model/screenless/expiration_date
                                                              204. +
                                                              205. model/screenless/google_pay_environment
                                                              206. +
                                                              207. model/screenless/google_pay_payment
                                                              208. +
                                                              209. model/screenless/google_pay_utils_configuration
                                                              210. +
                                                              211. model/screenless/notifications
                                                              212. +
                                                              213. model/screenless/pay_po_payment
                                                              214. +
                                                              215. model/screenless/payment_details
                                                              216. +
                                                              217. model/screenless/raty_pekao_payment
                                                              218. +
                                                              219. model/screenless/recursive
                                                              220. +
                                                              221. model/screenless/redirects
                                                              222. +
                                                              223. model/screenless/screenless_payment
                                                              224. +
                                                              225. model/screenless/transfer_method
                                                              226. +
                                                              227. model/screenless/transfer_payment
                                                              228. +
                                                              229. model/tokenization/tokenization
                                                              230. +
                                                              231. model/tpay_configuration
                                                              232. +
                                                              233. model/tpay_environment
                                                              234. +
                                                              235. model/transaction/single_transaction
                                                              236. +
                                                              237. model/transaction/token_payment
                                                              238. +
                                                              239. model/transaction/transaction
                                                              240. +
                                                              241. model/wallet_configuration
                                                              242. +
                                                              243. tpay_button
                                                              244. +
                                                              245. tpay_method_channel
                                                              246. +
                                                              247. tpay_platform_interface
                                                              248. +
                                                              249. util/google_pay_configuration_util
                                                              250. +
                                                              251. util/google_pay_util
                                                              252. +
                                                              253. util/payment_channels_util
                                                              254. +
                                                              255. util/result_util
                                                              256. +
                                                              257. util/screenless_result_util
                                                              @@ -177,7 +174,7 @@
                                                              automatic_payment_methods library
                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library-sidebar.html b/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library-sidebar.html index 11b1207a..6f3d263a 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library-sidebar.html +++ b/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library-sidebar.html @@ -1,5 +1,5 @@
                                                                -
                                                              1. Classes
                                                              2. +
                                                              3. Classes
                                                              4. AutomaticPaymentMethods
                                                              5. diff --git a/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library.html b/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library.html index 40dd1a7b..0a4ecdf4 100644 --- a/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library.html +++ b/doc/model_paymentMethod_automatic_payment_methods/model_paymentMethod_automatic_payment_methods-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                New URL

                                                                +

                                                                New URL

                                                                \ No newline at end of file diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias-class-sidebar.html b/doc/model_paymentMethod_blik_alias/BlikAlias-class-sidebar.html index 38e125b1..ca76bafd 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias-class-sidebar.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias-class-sidebar.html @@ -1,7 +1,7 @@
                                                                1. Constructors
                                                                2. -
                                                                3. BlikAlias
                                                                4. +
                                                                5. new
                                                                6. fromJson
                                                                7. diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias-class.html b/doc/model_paymentMethod_blik_alias/BlikAlias-class.html index 7367d78d..51ea9972 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias-class.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias-class.html @@ -25,24 +25,21 @@ menu
                                                                  BlikAlias
                                                                  -
                                                                  - -
                                                                  +
                                                                  BlikAlias class
                                                                  Annotations
                                                                  @@ -90,7 +87,7 @@

                                                                  BlikAlias class

                                                                  Constructors

                                                                  -
                                                                  +
                                                                  BlikAlias({required bool isRegistered, required String value, required String label})
                                                                  @@ -256,7 +253,7 @@

                                                                  Operators

                                                                  @@ -269,7 +266,7 @@
                                                                  blik_alias library
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.fromJson.html b/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.fromJson.html index 0ad0863f..62697258 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.fromJson.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                  - -
                                                                  +
                                                                  Implementation

                                                                  @@ -94,7 +91,7 @@
                                                                  BlikAlias class
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.html b/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.html index 72284afb..5763a359 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.html @@ -4,8 +4,8 @@ - - BlikAlias constructor - BlikAlias - blik_alias library - Dart API + + BlikAlias.new constructor - BlikAlias - blik_alias library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                  BlikAlias
                                                                  +
                                                                  BlikAlias.new
                                                                  -
                                                                  - -
                                                                  +
                                                                  Implementation
                                                                  BlikAlias class
                                                                  @@ -100,7 +97,7 @@
                                                                  BlikAlias class
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/isRegistered.html b/doc/model_paymentMethod_blik_alias/BlikAlias/isRegistered.html index 636a47f5..dc9d2932 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias/isRegistered.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias/isRegistered.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                  - -
                                                                  +
                                                                  Implementation @@ -97,7 +94,7 @@
                                                                  BlikAlias class
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/label.html b/doc/model_paymentMethod_blik_alias/BlikAlias/label.html index 0b6ad9b9..e08746cf 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias/label.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias/label.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                  - -
                                                                  +
                                                                  Implementation @@ -97,7 +94,7 @@
                                                                  BlikAlias class
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/toJson.html b/doc/model_paymentMethod_blik_alias/BlikAlias/toJson.html index 701ce036..4eaad411 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias/toJson.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                  - -
                                                                  +
                                                                  Implementation @@ -97,7 +94,7 @@
                                                                  BlikAlias class
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/value.html b/doc/model_paymentMethod_blik_alias/BlikAlias/value.html index 6d72de83..0b47daec 100644 --- a/doc/model_paymentMethod_blik_alias/BlikAlias/value.html +++ b/doc/model_paymentMethod_blik_alias/BlikAlias/value.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                  - -
                                                                  +
                                                                  Implementation @@ -97,7 +94,7 @@
                                                                  BlikAlias class
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/index.html b/doc/model_paymentMethod_blik_alias/index.html index 1ea7f4cc..5066abe4 100644 --- a/doc/model_paymentMethod_blik_alias/index.html +++ b/doc/model_paymentMethod_blik_alias/index.html @@ -31,17 +31,14 @@ -
                                                                  - -
                                                                  +
                                                                  Classes
                                                                  flutter_tpay package
                                                                  1. Libraries
                                                                  2. -
                                                                  3. model/apple_pay_configuration
                                                                  4. -
                                                                  5. model/certificate_pinning_configuration
                                                                  6. -
                                                                  7. model/google_pay_configuration
                                                                  8. -
                                                                  9. model/language/language
                                                                  10. -
                                                                  11. model/language/languages
                                                                  12. -
                                                                  13. model/language/localized_string
                                                                  14. -
                                                                  15. model/merchant/merchant
                                                                  16. -
                                                                  17. model/merchant/merchant_authorization
                                                                  18. -
                                                                  19. model/merchant/merchant_details
                                                                  20. -
                                                                  21. model/payer/payer
                                                                  22. -
                                                                  23. model/payer/payer_address
                                                                  24. -
                                                                  25. model/payer/payer_context
                                                                  26. -
                                                                  27. model/paymentChannel/payment_channel
                                                                  28. -
                                                                  29. model/paymentChannel/payment_constraint
                                                                  30. -
                                                                  31. model/paymentChannel/payment_group
                                                                  32. -
                                                                  33. model/paymentMethod/automatic_payment_methods
                                                                  34. -
                                                                  35. model/paymentMethod/blik_alias
                                                                  36. -
                                                                  37. model/paymentMethod/credit_card_brand
                                                                  38. -
                                                                  39. model/paymentMethod/digital_wallet
                                                                  40. -
                                                                  41. model/paymentMethod/installment_payment
                                                                  42. -
                                                                  43. model/paymentMethod/payment_method
                                                                  44. -
                                                                  45. model/paymentMethod/payment_methods
                                                                  46. -
                                                                  47. model/paymentMethod/tokenized_card
                                                                  48. -
                                                                  49. model/result/google_pay_configure_result
                                                                  50. -
                                                                  51. model/result/google_pay_open_result
                                                                  52. -
                                                                  53. model/result/payment_channels_result
                                                                  54. -
                                                                  55. model/result/result
                                                                  56. -
                                                                  57. model/result/screenless_result
                                                                  58. -
                                                                  59. model/screenless/ambiguous_alias
                                                                  60. -
                                                                  61. model/screenless/ambiguous_blik_payment
                                                                  62. -
                                                                  63. model/screenless/apple_pay_payment
                                                                  64. -
                                                                  65. model/screenless/blik_payment
                                                                  66. -
                                                                  67. model/screenless/callbacks
                                                                  68. -
                                                                  69. model/screenless/credit_card
                                                                  70. -
                                                                  71. model/screenless/credit_card_config
                                                                  72. -
                                                                  73. model/screenless/credit_card_payment
                                                                  74. -
                                                                  75. model/screenless/expiration_date
                                                                  76. -
                                                                  77. model/screenless/google_pay_environment
                                                                  78. -
                                                                  79. model/screenless/google_pay_payment
                                                                  80. -
                                                                  81. model/screenless/google_pay_utils_configuration
                                                                  82. -
                                                                  83. model/screenless/notifications
                                                                  84. -
                                                                  85. model/screenless/pay_po_payment
                                                                  86. -
                                                                  87. model/screenless/payment_details
                                                                  88. -
                                                                  89. model/screenless/raty_pekao_payment
                                                                  90. -
                                                                  91. model/screenless/recursive
                                                                  92. -
                                                                  93. model/screenless/redirects
                                                                  94. -
                                                                  95. model/screenless/screenless_payment
                                                                  96. -
                                                                  97. model/screenless/transfer_method
                                                                  98. -
                                                                  99. model/screenless/transfer_payment
                                                                  100. -
                                                                  101. model/tokenization/tokenization
                                                                  102. -
                                                                  103. model/tpay_configuration
                                                                  104. -
                                                                  105. model/tpay_environment
                                                                  106. -
                                                                  107. model/transaction/single_transaction
                                                                  108. -
                                                                  109. model/transaction/token_payment
                                                                  110. -
                                                                  111. model/transaction/transaction
                                                                  112. -
                                                                  113. model/wallet_configuration
                                                                  114. -
                                                                  115. tpay_button
                                                                  116. -
                                                                  117. tpay_method_channel
                                                                  118. -
                                                                  119. tpay_platform_interface
                                                                  120. -
                                                                  121. util/google_pay_configuration_util
                                                                  122. -
                                                                  123. util/google_pay_util
                                                                  124. -
                                                                  125. util/payment_channels_util
                                                                  126. -
                                                                  127. util/result_util
                                                                  128. -
                                                                  129. util/screenless_result_util
                                                                  130. +
                                                                  131. model/apple_pay_configuration
                                                                  132. +
                                                                  133. model/certificate_pinning_configuration
                                                                  134. +
                                                                  135. model/google_pay_configuration
                                                                  136. +
                                                                  137. model/language/language
                                                                  138. +
                                                                  139. model/language/languages
                                                                  140. +
                                                                  141. model/language/localized_string
                                                                  142. +
                                                                  143. model/merchant/merchant
                                                                  144. +
                                                                  145. model/merchant/merchant_authorization
                                                                  146. +
                                                                  147. model/merchant/merchant_details
                                                                  148. +
                                                                  149. model/payer/payer
                                                                  150. +
                                                                  151. model/payer/payer_address
                                                                  152. +
                                                                  153. model/payer/payer_context
                                                                  154. +
                                                                  155. model/paymentChannel/payment_channel
                                                                  156. +
                                                                  157. model/paymentChannel/payment_constraint
                                                                  158. +
                                                                  159. model/paymentChannel/payment_group
                                                                  160. +
                                                                  161. model/paymentMethod/automatic_payment_methods
                                                                  162. +
                                                                  163. model/paymentMethod/blik_alias
                                                                  164. +
                                                                  165. model/paymentMethod/credit_card_brand
                                                                  166. +
                                                                  167. model/paymentMethod/digital_wallet
                                                                  168. +
                                                                  169. model/paymentMethod/installment_payment
                                                                  170. +
                                                                  171. model/paymentMethod/payment_method
                                                                  172. +
                                                                  173. model/paymentMethod/payment_methods
                                                                  174. +
                                                                  175. model/paymentMethod/tokenized_card
                                                                  176. +
                                                                  177. model/result/google_pay_configure_result
                                                                  178. +
                                                                  179. model/result/google_pay_open_result
                                                                  180. +
                                                                  181. model/result/payment_channels_result
                                                                  182. +
                                                                  183. model/result/result
                                                                  184. +
                                                                  185. model/result/screenless_result
                                                                  186. +
                                                                  187. model/screenless/ambiguous_alias
                                                                  188. +
                                                                  189. model/screenless/ambiguous_blik_payment
                                                                  190. +
                                                                  191. model/screenless/apple_pay_payment
                                                                  192. +
                                                                  193. model/screenless/blik_payment
                                                                  194. +
                                                                  195. model/screenless/callbacks
                                                                  196. +
                                                                  197. model/screenless/credit_card
                                                                  198. +
                                                                  199. model/screenless/credit_card_config
                                                                  200. +
                                                                  201. model/screenless/credit_card_payment
                                                                  202. +
                                                                  203. model/screenless/expiration_date
                                                                  204. +
                                                                  205. model/screenless/google_pay_environment
                                                                  206. +
                                                                  207. model/screenless/google_pay_payment
                                                                  208. +
                                                                  209. model/screenless/google_pay_utils_configuration
                                                                  210. +
                                                                  211. model/screenless/notifications
                                                                  212. +
                                                                  213. model/screenless/pay_po_payment
                                                                  214. +
                                                                  215. model/screenless/payment_details
                                                                  216. +
                                                                  217. model/screenless/raty_pekao_payment
                                                                  218. +
                                                                  219. model/screenless/recursive
                                                                  220. +
                                                                  221. model/screenless/redirects
                                                                  222. +
                                                                  223. model/screenless/screenless_payment
                                                                  224. +
                                                                  225. model/screenless/transfer_method
                                                                  226. +
                                                                  227. model/screenless/transfer_payment
                                                                  228. +
                                                                  229. model/tokenization/tokenization
                                                                  230. +
                                                                  231. model/tpay_configuration
                                                                  232. +
                                                                  233. model/tpay_environment
                                                                  234. +
                                                                  235. model/transaction/single_transaction
                                                                  236. +
                                                                  237. model/transaction/token_payment
                                                                  238. +
                                                                  239. model/transaction/transaction
                                                                  240. +
                                                                  241. model/wallet_configuration
                                                                  242. +
                                                                  243. tpay_button
                                                                  244. +
                                                                  245. tpay_method_channel
                                                                  246. +
                                                                  247. tpay_platform_interface
                                                                  248. +
                                                                  249. util/google_pay_configuration_util
                                                                  250. +
                                                                  251. util/google_pay_util
                                                                  252. +
                                                                  253. util/payment_channels_util
                                                                  254. +
                                                                  255. util/result_util
                                                                  256. +
                                                                  257. util/screenless_result_util
                                                                  @@ -177,7 +174,7 @@
                                                                  blik_alias library
                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library-sidebar.html b/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library-sidebar.html index c70aa565..2d205dff 100644 --- a/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library-sidebar.html +++ b/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library-sidebar.html @@ -1,5 +1,5 @@
                                                                    -
                                                                  1. Classes
                                                                  2. +
                                                                  3. Classes
                                                                  4. BlikAlias
                                                                  5. diff --git a/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library.html b/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library.html index bdc3debb..07108a75 100644 --- a/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library.html +++ b/doc/model_paymentMethod_blik_alias/model_paymentMethod_blik_alias-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                    New URL

                                                                    +

                                                                    New URL

                                                                    \ No newline at end of file diff --git a/doc/model_paymentMethod_credit_card_brand/CreditCardBrand.html b/doc/model_paymentMethod_credit_card_brand/CreditCardBrand.html index b46a2919..edfa4aa5 100644 --- a/doc/model_paymentMethod_credit_card_brand/CreditCardBrand.html +++ b/doc/model_paymentMethod_credit_card_brand/CreditCardBrand.html @@ -25,24 +25,21 @@ menu
                                                                    CreditCardBrand
                                                                    -
                                                                    - -
                                                                    +
                                                                    Constants @@ -293,7 +290,7 @@
                                                                    credit_card_brand library
                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                    diff --git a/doc/model_paymentMethod_credit_card_brand/CreditCardBrand/values-constant.html b/doc/model_paymentMethod_credit_card_brand/CreditCardBrand/values-constant.html index f4fdea85..9af912c9 100644 --- a/doc/model_paymentMethod_credit_card_brand/CreditCardBrand/values-constant.html +++ b/doc/model_paymentMethod_credit_card_brand/CreditCardBrand/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                    - -
                                                                    +
                                                                    values constant @@ -96,7 +93,7 @@
                                                                    CreditCardBrand enum
                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                    diff --git a/doc/model_paymentMethod_credit_card_brand/index.html b/doc/model_paymentMethod_credit_card_brand/index.html index 6e0b2bad..9c3e3cb0 100644 --- a/doc/model_paymentMethod_credit_card_brand/index.html +++ b/doc/model_paymentMethod_credit_card_brand/index.html @@ -31,17 +31,14 @@ -
                                                                    - -
                                                                    +
                                                                    Enums
                                                                    flutter_tpay package
                                                                    1. Libraries
                                                                    2. -
                                                                    3. model/apple_pay_configuration
                                                                    4. -
                                                                    5. model/certificate_pinning_configuration
                                                                    6. -
                                                                    7. model/google_pay_configuration
                                                                    8. -
                                                                    9. model/language/language
                                                                    10. -
                                                                    11. model/language/languages
                                                                    12. -
                                                                    13. model/language/localized_string
                                                                    14. -
                                                                    15. model/merchant/merchant
                                                                    16. -
                                                                    17. model/merchant/merchant_authorization
                                                                    18. -
                                                                    19. model/merchant/merchant_details
                                                                    20. -
                                                                    21. model/payer/payer
                                                                    22. -
                                                                    23. model/payer/payer_address
                                                                    24. -
                                                                    25. model/payer/payer_context
                                                                    26. -
                                                                    27. model/paymentChannel/payment_channel
                                                                    28. -
                                                                    29. model/paymentChannel/payment_constraint
                                                                    30. -
                                                                    31. model/paymentChannel/payment_group
                                                                    32. -
                                                                    33. model/paymentMethod/automatic_payment_methods
                                                                    34. -
                                                                    35. model/paymentMethod/blik_alias
                                                                    36. -
                                                                    37. model/paymentMethod/credit_card_brand
                                                                    38. -
                                                                    39. model/paymentMethod/digital_wallet
                                                                    40. -
                                                                    41. model/paymentMethod/installment_payment
                                                                    42. -
                                                                    43. model/paymentMethod/payment_method
                                                                    44. -
                                                                    45. model/paymentMethod/payment_methods
                                                                    46. -
                                                                    47. model/paymentMethod/tokenized_card
                                                                    48. -
                                                                    49. model/result/google_pay_configure_result
                                                                    50. -
                                                                    51. model/result/google_pay_open_result
                                                                    52. -
                                                                    53. model/result/payment_channels_result
                                                                    54. -
                                                                    55. model/result/result
                                                                    56. -
                                                                    57. model/result/screenless_result
                                                                    58. -
                                                                    59. model/screenless/ambiguous_alias
                                                                    60. -
                                                                    61. model/screenless/ambiguous_blik_payment
                                                                    62. -
                                                                    63. model/screenless/apple_pay_payment
                                                                    64. -
                                                                    65. model/screenless/blik_payment
                                                                    66. -
                                                                    67. model/screenless/callbacks
                                                                    68. -
                                                                    69. model/screenless/credit_card
                                                                    70. -
                                                                    71. model/screenless/credit_card_config
                                                                    72. -
                                                                    73. model/screenless/credit_card_payment
                                                                    74. -
                                                                    75. model/screenless/expiration_date
                                                                    76. -
                                                                    77. model/screenless/google_pay_environment
                                                                    78. -
                                                                    79. model/screenless/google_pay_payment
                                                                    80. -
                                                                    81. model/screenless/google_pay_utils_configuration
                                                                    82. -
                                                                    83. model/screenless/notifications
                                                                    84. -
                                                                    85. model/screenless/pay_po_payment
                                                                    86. -
                                                                    87. model/screenless/payment_details
                                                                    88. -
                                                                    89. model/screenless/raty_pekao_payment
                                                                    90. -
                                                                    91. model/screenless/recursive
                                                                    92. -
                                                                    93. model/screenless/redirects
                                                                    94. -
                                                                    95. model/screenless/screenless_payment
                                                                    96. -
                                                                    97. model/screenless/transfer_method
                                                                    98. -
                                                                    99. model/screenless/transfer_payment
                                                                    100. -
                                                                    101. model/tokenization/tokenization
                                                                    102. -
                                                                    103. model/tpay_configuration
                                                                    104. -
                                                                    105. model/tpay_environment
                                                                    106. -
                                                                    107. model/transaction/single_transaction
                                                                    108. -
                                                                    109. model/transaction/token_payment
                                                                    110. -
                                                                    111. model/transaction/transaction
                                                                    112. -
                                                                    113. model/wallet_configuration
                                                                    114. -
                                                                    115. tpay_button
                                                                    116. -
                                                                    117. tpay_method_channel
                                                                    118. -
                                                                    119. tpay_platform_interface
                                                                    120. -
                                                                    121. util/google_pay_configuration_util
                                                                    122. -
                                                                    123. util/google_pay_util
                                                                    124. -
                                                                    125. util/payment_channels_util
                                                                    126. -
                                                                    127. util/result_util
                                                                    128. -
                                                                    129. util/screenless_result_util
                                                                    130. +
                                                                    131. model/apple_pay_configuration
                                                                    132. +
                                                                    133. model/certificate_pinning_configuration
                                                                    134. +
                                                                    135. model/google_pay_configuration
                                                                    136. +
                                                                    137. model/language/language
                                                                    138. +
                                                                    139. model/language/languages
                                                                    140. +
                                                                    141. model/language/localized_string
                                                                    142. +
                                                                    143. model/merchant/merchant
                                                                    144. +
                                                                    145. model/merchant/merchant_authorization
                                                                    146. +
                                                                    147. model/merchant/merchant_details
                                                                    148. +
                                                                    149. model/payer/payer
                                                                    150. +
                                                                    151. model/payer/payer_address
                                                                    152. +
                                                                    153. model/payer/payer_context
                                                                    154. +
                                                                    155. model/paymentChannel/payment_channel
                                                                    156. +
                                                                    157. model/paymentChannel/payment_constraint
                                                                    158. +
                                                                    159. model/paymentChannel/payment_group
                                                                    160. +
                                                                    161. model/paymentMethod/automatic_payment_methods
                                                                    162. +
                                                                    163. model/paymentMethod/blik_alias
                                                                    164. +
                                                                    165. model/paymentMethod/credit_card_brand
                                                                    166. +
                                                                    167. model/paymentMethod/digital_wallet
                                                                    168. +
                                                                    169. model/paymentMethod/installment_payment
                                                                    170. +
                                                                    171. model/paymentMethod/payment_method
                                                                    172. +
                                                                    173. model/paymentMethod/payment_methods
                                                                    174. +
                                                                    175. model/paymentMethod/tokenized_card
                                                                    176. +
                                                                    177. model/result/google_pay_configure_result
                                                                    178. +
                                                                    179. model/result/google_pay_open_result
                                                                    180. +
                                                                    181. model/result/payment_channels_result
                                                                    182. +
                                                                    183. model/result/result
                                                                    184. +
                                                                    185. model/result/screenless_result
                                                                    186. +
                                                                    187. model/screenless/ambiguous_alias
                                                                    188. +
                                                                    189. model/screenless/ambiguous_blik_payment
                                                                    190. +
                                                                    191. model/screenless/apple_pay_payment
                                                                    192. +
                                                                    193. model/screenless/blik_payment
                                                                    194. +
                                                                    195. model/screenless/callbacks
                                                                    196. +
                                                                    197. model/screenless/credit_card
                                                                    198. +
                                                                    199. model/screenless/credit_card_config
                                                                    200. +
                                                                    201. model/screenless/credit_card_payment
                                                                    202. +
                                                                    203. model/screenless/expiration_date
                                                                    204. +
                                                                    205. model/screenless/google_pay_environment
                                                                    206. +
                                                                    207. model/screenless/google_pay_payment
                                                                    208. +
                                                                    209. model/screenless/google_pay_utils_configuration
                                                                    210. +
                                                                    211. model/screenless/notifications
                                                                    212. +
                                                                    213. model/screenless/pay_po_payment
                                                                    214. +
                                                                    215. model/screenless/payment_details
                                                                    216. +
                                                                    217. model/screenless/raty_pekao_payment
                                                                    218. +
                                                                    219. model/screenless/recursive
                                                                    220. +
                                                                    221. model/screenless/redirects
                                                                    222. +
                                                                    223. model/screenless/screenless_payment
                                                                    224. +
                                                                    225. model/screenless/transfer_method
                                                                    226. +
                                                                    227. model/screenless/transfer_payment
                                                                    228. +
                                                                    229. model/tokenization/tokenization
                                                                    230. +
                                                                    231. model/tpay_configuration
                                                                    232. +
                                                                    233. model/tpay_environment
                                                                    234. +
                                                                    235. model/transaction/single_transaction
                                                                    236. +
                                                                    237. model/transaction/token_payment
                                                                    238. +
                                                                    239. model/transaction/transaction
                                                                    240. +
                                                                    241. model/wallet_configuration
                                                                    242. +
                                                                    243. tpay_button
                                                                    244. +
                                                                    245. tpay_method_channel
                                                                    246. +
                                                                    247. tpay_platform_interface
                                                                    248. +
                                                                    249. util/google_pay_configuration_util
                                                                    250. +
                                                                    251. util/google_pay_util
                                                                    252. +
                                                                    253. util/payment_channels_util
                                                                    254. +
                                                                    255. util/result_util
                                                                    256. +
                                                                    257. util/screenless_result_util
                                                                    @@ -176,7 +173,7 @@
                                                                    credit_card_brand library
                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                    diff --git a/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library-sidebar.html b/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library-sidebar.html index ac2c58e7..4ac1ac9e 100644 --- a/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library-sidebar.html +++ b/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library-sidebar.html @@ -1,6 +1,6 @@
                                                                      -
                                                                    1. Enums
                                                                    2. +
                                                                    3. Enums
                                                                    4. CreditCardBrand
                                                                    5. diff --git a/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library.html b/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library.html index 021490a0..3ca0d319 100644 --- a/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library.html +++ b/doc/model_paymentMethod_credit_card_brand/model_paymentMethod_credit_card_brand-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                      New URL

                                                                      +

                                                                      New URL

                                                                      \ No newline at end of file diff --git a/doc/model_paymentMethod_digital_wallet/DigitalWallet.html b/doc/model_paymentMethod_digital_wallet/DigitalWallet.html index 010f394d..e92a2456 100644 --- a/doc/model_paymentMethod_digital_wallet/DigitalWallet.html +++ b/doc/model_paymentMethod_digital_wallet/DigitalWallet.html @@ -25,24 +25,21 @@ menu
                                                                      DigitalWallet
                                                                      -
                                                                      - -
                                                                      +
                                                                      Constants @@ -281,7 +278,7 @@
                                                                      digital_wallet library
                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                      diff --git a/doc/model_paymentMethod_digital_wallet/DigitalWallet/values-constant.html b/doc/model_paymentMethod_digital_wallet/DigitalWallet/values-constant.html index 05232525..71361d03 100644 --- a/doc/model_paymentMethod_digital_wallet/DigitalWallet/values-constant.html +++ b/doc/model_paymentMethod_digital_wallet/DigitalWallet/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                      - -
                                                                      +
                                                                      values constant @@ -96,7 +93,7 @@
                                                                      DigitalWallet enum
                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                      diff --git a/doc/model_paymentMethod_digital_wallet/index.html b/doc/model_paymentMethod_digital_wallet/index.html index ea4d7785..e99360a4 100644 --- a/doc/model_paymentMethod_digital_wallet/index.html +++ b/doc/model_paymentMethod_digital_wallet/index.html @@ -31,17 +31,14 @@ -
                                                                      - -
                                                                      +
                                                                      Enums
                                                                      flutter_tpay package
                                                                      1. Libraries
                                                                      2. -
                                                                      3. model/apple_pay_configuration
                                                                      4. -
                                                                      5. model/certificate_pinning_configuration
                                                                      6. -
                                                                      7. model/google_pay_configuration
                                                                      8. -
                                                                      9. model/language/language
                                                                      10. -
                                                                      11. model/language/languages
                                                                      12. -
                                                                      13. model/language/localized_string
                                                                      14. -
                                                                      15. model/merchant/merchant
                                                                      16. -
                                                                      17. model/merchant/merchant_authorization
                                                                      18. -
                                                                      19. model/merchant/merchant_details
                                                                      20. -
                                                                      21. model/payer/payer
                                                                      22. -
                                                                      23. model/payer/payer_address
                                                                      24. -
                                                                      25. model/payer/payer_context
                                                                      26. -
                                                                      27. model/paymentChannel/payment_channel
                                                                      28. -
                                                                      29. model/paymentChannel/payment_constraint
                                                                      30. -
                                                                      31. model/paymentChannel/payment_group
                                                                      32. -
                                                                      33. model/paymentMethod/automatic_payment_methods
                                                                      34. -
                                                                      35. model/paymentMethod/blik_alias
                                                                      36. -
                                                                      37. model/paymentMethod/credit_card_brand
                                                                      38. -
                                                                      39. model/paymentMethod/digital_wallet
                                                                      40. -
                                                                      41. model/paymentMethod/installment_payment
                                                                      42. -
                                                                      43. model/paymentMethod/payment_method
                                                                      44. -
                                                                      45. model/paymentMethod/payment_methods
                                                                      46. -
                                                                      47. model/paymentMethod/tokenized_card
                                                                      48. -
                                                                      49. model/result/google_pay_configure_result
                                                                      50. -
                                                                      51. model/result/google_pay_open_result
                                                                      52. -
                                                                      53. model/result/payment_channels_result
                                                                      54. -
                                                                      55. model/result/result
                                                                      56. -
                                                                      57. model/result/screenless_result
                                                                      58. -
                                                                      59. model/screenless/ambiguous_alias
                                                                      60. -
                                                                      61. model/screenless/ambiguous_blik_payment
                                                                      62. -
                                                                      63. model/screenless/apple_pay_payment
                                                                      64. -
                                                                      65. model/screenless/blik_payment
                                                                      66. -
                                                                      67. model/screenless/callbacks
                                                                      68. -
                                                                      69. model/screenless/credit_card
                                                                      70. -
                                                                      71. model/screenless/credit_card_config
                                                                      72. -
                                                                      73. model/screenless/credit_card_payment
                                                                      74. -
                                                                      75. model/screenless/expiration_date
                                                                      76. -
                                                                      77. model/screenless/google_pay_environment
                                                                      78. -
                                                                      79. model/screenless/google_pay_payment
                                                                      80. -
                                                                      81. model/screenless/google_pay_utils_configuration
                                                                      82. -
                                                                      83. model/screenless/notifications
                                                                      84. -
                                                                      85. model/screenless/pay_po_payment
                                                                      86. -
                                                                      87. model/screenless/payment_details
                                                                      88. -
                                                                      89. model/screenless/raty_pekao_payment
                                                                      90. -
                                                                      91. model/screenless/recursive
                                                                      92. -
                                                                      93. model/screenless/redirects
                                                                      94. -
                                                                      95. model/screenless/screenless_payment
                                                                      96. -
                                                                      97. model/screenless/transfer_method
                                                                      98. -
                                                                      99. model/screenless/transfer_payment
                                                                      100. -
                                                                      101. model/tokenization/tokenization
                                                                      102. -
                                                                      103. model/tpay_configuration
                                                                      104. -
                                                                      105. model/tpay_environment
                                                                      106. -
                                                                      107. model/transaction/single_transaction
                                                                      108. -
                                                                      109. model/transaction/token_payment
                                                                      110. -
                                                                      111. model/transaction/transaction
                                                                      112. -
                                                                      113. model/wallet_configuration
                                                                      114. -
                                                                      115. tpay_button
                                                                      116. -
                                                                      117. tpay_method_channel
                                                                      118. -
                                                                      119. tpay_platform_interface
                                                                      120. -
                                                                      121. util/google_pay_configuration_util
                                                                      122. -
                                                                      123. util/google_pay_util
                                                                      124. -
                                                                      125. util/payment_channels_util
                                                                      126. -
                                                                      127. util/result_util
                                                                      128. -
                                                                      129. util/screenless_result_util
                                                                      130. +
                                                                      131. model/apple_pay_configuration
                                                                      132. +
                                                                      133. model/certificate_pinning_configuration
                                                                      134. +
                                                                      135. model/google_pay_configuration
                                                                      136. +
                                                                      137. model/language/language
                                                                      138. +
                                                                      139. model/language/languages
                                                                      140. +
                                                                      141. model/language/localized_string
                                                                      142. +
                                                                      143. model/merchant/merchant
                                                                      144. +
                                                                      145. model/merchant/merchant_authorization
                                                                      146. +
                                                                      147. model/merchant/merchant_details
                                                                      148. +
                                                                      149. model/payer/payer
                                                                      150. +
                                                                      151. model/payer/payer_address
                                                                      152. +
                                                                      153. model/payer/payer_context
                                                                      154. +
                                                                      155. model/paymentChannel/payment_channel
                                                                      156. +
                                                                      157. model/paymentChannel/payment_constraint
                                                                      158. +
                                                                      159. model/paymentChannel/payment_group
                                                                      160. +
                                                                      161. model/paymentMethod/automatic_payment_methods
                                                                      162. +
                                                                      163. model/paymentMethod/blik_alias
                                                                      164. +
                                                                      165. model/paymentMethod/credit_card_brand
                                                                      166. +
                                                                      167. model/paymentMethod/digital_wallet
                                                                      168. +
                                                                      169. model/paymentMethod/installment_payment
                                                                      170. +
                                                                      171. model/paymentMethod/payment_method
                                                                      172. +
                                                                      173. model/paymentMethod/payment_methods
                                                                      174. +
                                                                      175. model/paymentMethod/tokenized_card
                                                                      176. +
                                                                      177. model/result/google_pay_configure_result
                                                                      178. +
                                                                      179. model/result/google_pay_open_result
                                                                      180. +
                                                                      181. model/result/payment_channels_result
                                                                      182. +
                                                                      183. model/result/result
                                                                      184. +
                                                                      185. model/result/screenless_result
                                                                      186. +
                                                                      187. model/screenless/ambiguous_alias
                                                                      188. +
                                                                      189. model/screenless/ambiguous_blik_payment
                                                                      190. +
                                                                      191. model/screenless/apple_pay_payment
                                                                      192. +
                                                                      193. model/screenless/blik_payment
                                                                      194. +
                                                                      195. model/screenless/callbacks
                                                                      196. +
                                                                      197. model/screenless/credit_card
                                                                      198. +
                                                                      199. model/screenless/credit_card_config
                                                                      200. +
                                                                      201. model/screenless/credit_card_payment
                                                                      202. +
                                                                      203. model/screenless/expiration_date
                                                                      204. +
                                                                      205. model/screenless/google_pay_environment
                                                                      206. +
                                                                      207. model/screenless/google_pay_payment
                                                                      208. +
                                                                      209. model/screenless/google_pay_utils_configuration
                                                                      210. +
                                                                      211. model/screenless/notifications
                                                                      212. +
                                                                      213. model/screenless/pay_po_payment
                                                                      214. +
                                                                      215. model/screenless/payment_details
                                                                      216. +
                                                                      217. model/screenless/raty_pekao_payment
                                                                      218. +
                                                                      219. model/screenless/recursive
                                                                      220. +
                                                                      221. model/screenless/redirects
                                                                      222. +
                                                                      223. model/screenless/screenless_payment
                                                                      224. +
                                                                      225. model/screenless/transfer_method
                                                                      226. +
                                                                      227. model/screenless/transfer_payment
                                                                      228. +
                                                                      229. model/tokenization/tokenization
                                                                      230. +
                                                                      231. model/tpay_configuration
                                                                      232. +
                                                                      233. model/tpay_environment
                                                                      234. +
                                                                      235. model/transaction/single_transaction
                                                                      236. +
                                                                      237. model/transaction/token_payment
                                                                      238. +
                                                                      239. model/transaction/transaction
                                                                      240. +
                                                                      241. model/wallet_configuration
                                                                      242. +
                                                                      243. tpay_button
                                                                      244. +
                                                                      245. tpay_method_channel
                                                                      246. +
                                                                      247. tpay_platform_interface
                                                                      248. +
                                                                      249. util/google_pay_configuration_util
                                                                      250. +
                                                                      251. util/google_pay_util
                                                                      252. +
                                                                      253. util/payment_channels_util
                                                                      254. +
                                                                      255. util/result_util
                                                                      256. +
                                                                      257. util/screenless_result_util
                                                                      @@ -176,7 +173,7 @@
                                                                      digital_wallet library
                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                      diff --git a/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library-sidebar.html b/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library-sidebar.html index e362db18..625c95ef 100644 --- a/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library-sidebar.html +++ b/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library-sidebar.html @@ -1,6 +1,6 @@
                                                                        -
                                                                      1. Enums
                                                                      2. +
                                                                      3. Enums
                                                                      4. DigitalWallet
                                                                      5. diff --git a/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library.html b/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library.html index 68ecd87e..8a6ed2ad 100644 --- a/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library.html +++ b/doc/model_paymentMethod_digital_wallet/model_paymentMethod_digital_wallet-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                        New URL

                                                                        +

                                                                        New URL

                                                                        \ No newline at end of file diff --git a/doc/model_paymentMethod_installment_payment/InstallmentPayment.html b/doc/model_paymentMethod_installment_payment/InstallmentPayment.html index c4f8e418..ace0f8e8 100644 --- a/doc/model_paymentMethod_installment_payment/InstallmentPayment.html +++ b/doc/model_paymentMethod_installment_payment/InstallmentPayment.html @@ -25,24 +25,21 @@ menu
                                                                        InstallmentPayment
                                                                        -
                                                                        - -
                                                                        +
                                                                        Constants @@ -281,7 +278,7 @@
                                                                        installment_payment library
                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                        diff --git a/doc/model_paymentMethod_installment_payment/InstallmentPayment/values-constant.html b/doc/model_paymentMethod_installment_payment/InstallmentPayment/values-constant.html index 42c44bcd..b99e025b 100644 --- a/doc/model_paymentMethod_installment_payment/InstallmentPayment/values-constant.html +++ b/doc/model_paymentMethod_installment_payment/InstallmentPayment/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                        - -
                                                                        +
                                                                        values constant @@ -96,7 +93,7 @@
                                                                        InstallmentPayment enum
                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                        diff --git a/doc/model_paymentMethod_installment_payment/index.html b/doc/model_paymentMethod_installment_payment/index.html index ae5408cb..ef4e5bc4 100644 --- a/doc/model_paymentMethod_installment_payment/index.html +++ b/doc/model_paymentMethod_installment_payment/index.html @@ -31,17 +31,14 @@ -
                                                                        - -
                                                                        +
                                                                        Enums
                                                                        flutter_tpay package
                                                                        1. Libraries
                                                                        2. -
                                                                        3. model/apple_pay_configuration
                                                                        4. -
                                                                        5. model/certificate_pinning_configuration
                                                                        6. -
                                                                        7. model/google_pay_configuration
                                                                        8. -
                                                                        9. model/language/language
                                                                        10. -
                                                                        11. model/language/languages
                                                                        12. -
                                                                        13. model/language/localized_string
                                                                        14. -
                                                                        15. model/merchant/merchant
                                                                        16. -
                                                                        17. model/merchant/merchant_authorization
                                                                        18. -
                                                                        19. model/merchant/merchant_details
                                                                        20. -
                                                                        21. model/payer/payer
                                                                        22. -
                                                                        23. model/payer/payer_address
                                                                        24. -
                                                                        25. model/payer/payer_context
                                                                        26. -
                                                                        27. model/paymentChannel/payment_channel
                                                                        28. -
                                                                        29. model/paymentChannel/payment_constraint
                                                                        30. -
                                                                        31. model/paymentChannel/payment_group
                                                                        32. -
                                                                        33. model/paymentMethod/automatic_payment_methods
                                                                        34. -
                                                                        35. model/paymentMethod/blik_alias
                                                                        36. -
                                                                        37. model/paymentMethod/credit_card_brand
                                                                        38. -
                                                                        39. model/paymentMethod/digital_wallet
                                                                        40. -
                                                                        41. model/paymentMethod/installment_payment
                                                                        42. -
                                                                        43. model/paymentMethod/payment_method
                                                                        44. -
                                                                        45. model/paymentMethod/payment_methods
                                                                        46. -
                                                                        47. model/paymentMethod/tokenized_card
                                                                        48. -
                                                                        49. model/result/google_pay_configure_result
                                                                        50. -
                                                                        51. model/result/google_pay_open_result
                                                                        52. -
                                                                        53. model/result/payment_channels_result
                                                                        54. -
                                                                        55. model/result/result
                                                                        56. -
                                                                        57. model/result/screenless_result
                                                                        58. -
                                                                        59. model/screenless/ambiguous_alias
                                                                        60. -
                                                                        61. model/screenless/ambiguous_blik_payment
                                                                        62. -
                                                                        63. model/screenless/apple_pay_payment
                                                                        64. -
                                                                        65. model/screenless/blik_payment
                                                                        66. -
                                                                        67. model/screenless/callbacks
                                                                        68. -
                                                                        69. model/screenless/credit_card
                                                                        70. -
                                                                        71. model/screenless/credit_card_config
                                                                        72. -
                                                                        73. model/screenless/credit_card_payment
                                                                        74. -
                                                                        75. model/screenless/expiration_date
                                                                        76. -
                                                                        77. model/screenless/google_pay_environment
                                                                        78. -
                                                                        79. model/screenless/google_pay_payment
                                                                        80. -
                                                                        81. model/screenless/google_pay_utils_configuration
                                                                        82. -
                                                                        83. model/screenless/notifications
                                                                        84. -
                                                                        85. model/screenless/pay_po_payment
                                                                        86. -
                                                                        87. model/screenless/payment_details
                                                                        88. -
                                                                        89. model/screenless/raty_pekao_payment
                                                                        90. -
                                                                        91. model/screenless/recursive
                                                                        92. -
                                                                        93. model/screenless/redirects
                                                                        94. -
                                                                        95. model/screenless/screenless_payment
                                                                        96. -
                                                                        97. model/screenless/transfer_method
                                                                        98. -
                                                                        99. model/screenless/transfer_payment
                                                                        100. -
                                                                        101. model/tokenization/tokenization
                                                                        102. -
                                                                        103. model/tpay_configuration
                                                                        104. -
                                                                        105. model/tpay_environment
                                                                        106. -
                                                                        107. model/transaction/single_transaction
                                                                        108. -
                                                                        109. model/transaction/token_payment
                                                                        110. -
                                                                        111. model/transaction/transaction
                                                                        112. -
                                                                        113. model/wallet_configuration
                                                                        114. -
                                                                        115. tpay_button
                                                                        116. -
                                                                        117. tpay_method_channel
                                                                        118. -
                                                                        119. tpay_platform_interface
                                                                        120. -
                                                                        121. util/google_pay_configuration_util
                                                                        122. -
                                                                        123. util/google_pay_util
                                                                        124. -
                                                                        125. util/payment_channels_util
                                                                        126. -
                                                                        127. util/result_util
                                                                        128. -
                                                                        129. util/screenless_result_util
                                                                        130. +
                                                                        131. model/apple_pay_configuration
                                                                        132. +
                                                                        133. model/certificate_pinning_configuration
                                                                        134. +
                                                                        135. model/google_pay_configuration
                                                                        136. +
                                                                        137. model/language/language
                                                                        138. +
                                                                        139. model/language/languages
                                                                        140. +
                                                                        141. model/language/localized_string
                                                                        142. +
                                                                        143. model/merchant/merchant
                                                                        144. +
                                                                        145. model/merchant/merchant_authorization
                                                                        146. +
                                                                        147. model/merchant/merchant_details
                                                                        148. +
                                                                        149. model/payer/payer
                                                                        150. +
                                                                        151. model/payer/payer_address
                                                                        152. +
                                                                        153. model/payer/payer_context
                                                                        154. +
                                                                        155. model/paymentChannel/payment_channel
                                                                        156. +
                                                                        157. model/paymentChannel/payment_constraint
                                                                        158. +
                                                                        159. model/paymentChannel/payment_group
                                                                        160. +
                                                                        161. model/paymentMethod/automatic_payment_methods
                                                                        162. +
                                                                        163. model/paymentMethod/blik_alias
                                                                        164. +
                                                                        165. model/paymentMethod/credit_card_brand
                                                                        166. +
                                                                        167. model/paymentMethod/digital_wallet
                                                                        168. +
                                                                        169. model/paymentMethod/installment_payment
                                                                        170. +
                                                                        171. model/paymentMethod/payment_method
                                                                        172. +
                                                                        173. model/paymentMethod/payment_methods
                                                                        174. +
                                                                        175. model/paymentMethod/tokenized_card
                                                                        176. +
                                                                        177. model/result/google_pay_configure_result
                                                                        178. +
                                                                        179. model/result/google_pay_open_result
                                                                        180. +
                                                                        181. model/result/payment_channels_result
                                                                        182. +
                                                                        183. model/result/result
                                                                        184. +
                                                                        185. model/result/screenless_result
                                                                        186. +
                                                                        187. model/screenless/ambiguous_alias
                                                                        188. +
                                                                        189. model/screenless/ambiguous_blik_payment
                                                                        190. +
                                                                        191. model/screenless/apple_pay_payment
                                                                        192. +
                                                                        193. model/screenless/blik_payment
                                                                        194. +
                                                                        195. model/screenless/callbacks
                                                                        196. +
                                                                        197. model/screenless/credit_card
                                                                        198. +
                                                                        199. model/screenless/credit_card_config
                                                                        200. +
                                                                        201. model/screenless/credit_card_payment
                                                                        202. +
                                                                        203. model/screenless/expiration_date
                                                                        204. +
                                                                        205. model/screenless/google_pay_environment
                                                                        206. +
                                                                        207. model/screenless/google_pay_payment
                                                                        208. +
                                                                        209. model/screenless/google_pay_utils_configuration
                                                                        210. +
                                                                        211. model/screenless/notifications
                                                                        212. +
                                                                        213. model/screenless/pay_po_payment
                                                                        214. +
                                                                        215. model/screenless/payment_details
                                                                        216. +
                                                                        217. model/screenless/raty_pekao_payment
                                                                        218. +
                                                                        219. model/screenless/recursive
                                                                        220. +
                                                                        221. model/screenless/redirects
                                                                        222. +
                                                                        223. model/screenless/screenless_payment
                                                                        224. +
                                                                        225. model/screenless/transfer_method
                                                                        226. +
                                                                        227. model/screenless/transfer_payment
                                                                        228. +
                                                                        229. model/tokenization/tokenization
                                                                        230. +
                                                                        231. model/tpay_configuration
                                                                        232. +
                                                                        233. model/tpay_environment
                                                                        234. +
                                                                        235. model/transaction/single_transaction
                                                                        236. +
                                                                        237. model/transaction/token_payment
                                                                        238. +
                                                                        239. model/transaction/transaction
                                                                        240. +
                                                                        241. model/wallet_configuration
                                                                        242. +
                                                                        243. tpay_button
                                                                        244. +
                                                                        245. tpay_method_channel
                                                                        246. +
                                                                        247. tpay_platform_interface
                                                                        248. +
                                                                        249. util/google_pay_configuration_util
                                                                        250. +
                                                                        251. util/google_pay_util
                                                                        252. +
                                                                        253. util/payment_channels_util
                                                                        254. +
                                                                        255. util/result_util
                                                                        256. +
                                                                        257. util/screenless_result_util
                                                                        @@ -176,7 +173,7 @@
                                                                        installment_payment library
                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                        diff --git a/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library-sidebar.html b/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library-sidebar.html index 218737dc..ff13633b 100644 --- a/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library-sidebar.html +++ b/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library-sidebar.html @@ -1,6 +1,6 @@
                                                                          -
                                                                        1. Enums
                                                                        2. +
                                                                        3. Enums
                                                                        4. InstallmentPayment
                                                                        5. diff --git a/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library.html b/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library.html index 0f7c9d89..447e2328 100644 --- a/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library.html +++ b/doc/model_paymentMethod_installment_payment/model_paymentMethod_installment_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                          New URL

                                                                          +

                                                                          New URL

                                                                          \ No newline at end of file diff --git a/doc/model_paymentMethod_payment_method/PaymentMethod.html b/doc/model_paymentMethod_payment_method/PaymentMethod.html index 40569ba7..ce999bd3 100644 --- a/doc/model_paymentMethod_payment_method/PaymentMethod.html +++ b/doc/model_paymentMethod_payment_method/PaymentMethod.html @@ -25,24 +25,21 @@ menu
                                                                          PaymentMethod
                                                                          -
                                                                          - -
                                                                          +
                                                                          Constants @@ -293,7 +290,7 @@
                                                                          payment_method library
                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                          diff --git a/doc/model_paymentMethod_payment_method/PaymentMethod/values-constant.html b/doc/model_paymentMethod_payment_method/PaymentMethod/values-constant.html index 266f208f..dcb7de08 100644 --- a/doc/model_paymentMethod_payment_method/PaymentMethod/values-constant.html +++ b/doc/model_paymentMethod_payment_method/PaymentMethod/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                          - -
                                                                          +
                                                                          values constant @@ -96,7 +93,7 @@
                                                                          PaymentMethod enum
                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                          diff --git a/doc/model_paymentMethod_payment_method/index.html b/doc/model_paymentMethod_payment_method/index.html index 68ac76be..260f15e9 100644 --- a/doc/model_paymentMethod_payment_method/index.html +++ b/doc/model_paymentMethod_payment_method/index.html @@ -31,17 +31,14 @@ -
                                                                          - -
                                                                          +
                                                                          Enums
                                                                          flutter_tpay package
                                                                          1. Libraries
                                                                          2. -
                                                                          3. model/apple_pay_configuration
                                                                          4. -
                                                                          5. model/certificate_pinning_configuration
                                                                          6. -
                                                                          7. model/google_pay_configuration
                                                                          8. -
                                                                          9. model/language/language
                                                                          10. -
                                                                          11. model/language/languages
                                                                          12. -
                                                                          13. model/language/localized_string
                                                                          14. -
                                                                          15. model/merchant/merchant
                                                                          16. -
                                                                          17. model/merchant/merchant_authorization
                                                                          18. -
                                                                          19. model/merchant/merchant_details
                                                                          20. -
                                                                          21. model/payer/payer
                                                                          22. -
                                                                          23. model/payer/payer_address
                                                                          24. -
                                                                          25. model/payer/payer_context
                                                                          26. -
                                                                          27. model/paymentChannel/payment_channel
                                                                          28. -
                                                                          29. model/paymentChannel/payment_constraint
                                                                          30. -
                                                                          31. model/paymentChannel/payment_group
                                                                          32. -
                                                                          33. model/paymentMethod/automatic_payment_methods
                                                                          34. -
                                                                          35. model/paymentMethod/blik_alias
                                                                          36. -
                                                                          37. model/paymentMethod/credit_card_brand
                                                                          38. -
                                                                          39. model/paymentMethod/digital_wallet
                                                                          40. -
                                                                          41. model/paymentMethod/installment_payment
                                                                          42. -
                                                                          43. model/paymentMethod/payment_method
                                                                          44. -
                                                                          45. model/paymentMethod/payment_methods
                                                                          46. -
                                                                          47. model/paymentMethod/tokenized_card
                                                                          48. -
                                                                          49. model/result/google_pay_configure_result
                                                                          50. -
                                                                          51. model/result/google_pay_open_result
                                                                          52. -
                                                                          53. model/result/payment_channels_result
                                                                          54. -
                                                                          55. model/result/result
                                                                          56. -
                                                                          57. model/result/screenless_result
                                                                          58. -
                                                                          59. model/screenless/ambiguous_alias
                                                                          60. -
                                                                          61. model/screenless/ambiguous_blik_payment
                                                                          62. -
                                                                          63. model/screenless/apple_pay_payment
                                                                          64. -
                                                                          65. model/screenless/blik_payment
                                                                          66. -
                                                                          67. model/screenless/callbacks
                                                                          68. -
                                                                          69. model/screenless/credit_card
                                                                          70. -
                                                                          71. model/screenless/credit_card_config
                                                                          72. -
                                                                          73. model/screenless/credit_card_payment
                                                                          74. -
                                                                          75. model/screenless/expiration_date
                                                                          76. -
                                                                          77. model/screenless/google_pay_environment
                                                                          78. -
                                                                          79. model/screenless/google_pay_payment
                                                                          80. -
                                                                          81. model/screenless/google_pay_utils_configuration
                                                                          82. -
                                                                          83. model/screenless/notifications
                                                                          84. -
                                                                          85. model/screenless/pay_po_payment
                                                                          86. -
                                                                          87. model/screenless/payment_details
                                                                          88. -
                                                                          89. model/screenless/raty_pekao_payment
                                                                          90. -
                                                                          91. model/screenless/recursive
                                                                          92. -
                                                                          93. model/screenless/redirects
                                                                          94. -
                                                                          95. model/screenless/screenless_payment
                                                                          96. -
                                                                          97. model/screenless/transfer_method
                                                                          98. -
                                                                          99. model/screenless/transfer_payment
                                                                          100. -
                                                                          101. model/tokenization/tokenization
                                                                          102. -
                                                                          103. model/tpay_configuration
                                                                          104. -
                                                                          105. model/tpay_environment
                                                                          106. -
                                                                          107. model/transaction/single_transaction
                                                                          108. -
                                                                          109. model/transaction/token_payment
                                                                          110. -
                                                                          111. model/transaction/transaction
                                                                          112. -
                                                                          113. model/wallet_configuration
                                                                          114. -
                                                                          115. tpay_button
                                                                          116. -
                                                                          117. tpay_method_channel
                                                                          118. -
                                                                          119. tpay_platform_interface
                                                                          120. -
                                                                          121. util/google_pay_configuration_util
                                                                          122. -
                                                                          123. util/google_pay_util
                                                                          124. -
                                                                          125. util/payment_channels_util
                                                                          126. -
                                                                          127. util/result_util
                                                                          128. -
                                                                          129. util/screenless_result_util
                                                                          130. +
                                                                          131. model/apple_pay_configuration
                                                                          132. +
                                                                          133. model/certificate_pinning_configuration
                                                                          134. +
                                                                          135. model/google_pay_configuration
                                                                          136. +
                                                                          137. model/language/language
                                                                          138. +
                                                                          139. model/language/languages
                                                                          140. +
                                                                          141. model/language/localized_string
                                                                          142. +
                                                                          143. model/merchant/merchant
                                                                          144. +
                                                                          145. model/merchant/merchant_authorization
                                                                          146. +
                                                                          147. model/merchant/merchant_details
                                                                          148. +
                                                                          149. model/payer/payer
                                                                          150. +
                                                                          151. model/payer/payer_address
                                                                          152. +
                                                                          153. model/payer/payer_context
                                                                          154. +
                                                                          155. model/paymentChannel/payment_channel
                                                                          156. +
                                                                          157. model/paymentChannel/payment_constraint
                                                                          158. +
                                                                          159. model/paymentChannel/payment_group
                                                                          160. +
                                                                          161. model/paymentMethod/automatic_payment_methods
                                                                          162. +
                                                                          163. model/paymentMethod/blik_alias
                                                                          164. +
                                                                          165. model/paymentMethod/credit_card_brand
                                                                          166. +
                                                                          167. model/paymentMethod/digital_wallet
                                                                          168. +
                                                                          169. model/paymentMethod/installment_payment
                                                                          170. +
                                                                          171. model/paymentMethod/payment_method
                                                                          172. +
                                                                          173. model/paymentMethod/payment_methods
                                                                          174. +
                                                                          175. model/paymentMethod/tokenized_card
                                                                          176. +
                                                                          177. model/result/google_pay_configure_result
                                                                          178. +
                                                                          179. model/result/google_pay_open_result
                                                                          180. +
                                                                          181. model/result/payment_channels_result
                                                                          182. +
                                                                          183. model/result/result
                                                                          184. +
                                                                          185. model/result/screenless_result
                                                                          186. +
                                                                          187. model/screenless/ambiguous_alias
                                                                          188. +
                                                                          189. model/screenless/ambiguous_blik_payment
                                                                          190. +
                                                                          191. model/screenless/apple_pay_payment
                                                                          192. +
                                                                          193. model/screenless/blik_payment
                                                                          194. +
                                                                          195. model/screenless/callbacks
                                                                          196. +
                                                                          197. model/screenless/credit_card
                                                                          198. +
                                                                          199. model/screenless/credit_card_config
                                                                          200. +
                                                                          201. model/screenless/credit_card_payment
                                                                          202. +
                                                                          203. model/screenless/expiration_date
                                                                          204. +
                                                                          205. model/screenless/google_pay_environment
                                                                          206. +
                                                                          207. model/screenless/google_pay_payment
                                                                          208. +
                                                                          209. model/screenless/google_pay_utils_configuration
                                                                          210. +
                                                                          211. model/screenless/notifications
                                                                          212. +
                                                                          213. model/screenless/pay_po_payment
                                                                          214. +
                                                                          215. model/screenless/payment_details
                                                                          216. +
                                                                          217. model/screenless/raty_pekao_payment
                                                                          218. +
                                                                          219. model/screenless/recursive
                                                                          220. +
                                                                          221. model/screenless/redirects
                                                                          222. +
                                                                          223. model/screenless/screenless_payment
                                                                          224. +
                                                                          225. model/screenless/transfer_method
                                                                          226. +
                                                                          227. model/screenless/transfer_payment
                                                                          228. +
                                                                          229. model/tokenization/tokenization
                                                                          230. +
                                                                          231. model/tpay_configuration
                                                                          232. +
                                                                          233. model/tpay_environment
                                                                          234. +
                                                                          235. model/transaction/single_transaction
                                                                          236. +
                                                                          237. model/transaction/token_payment
                                                                          238. +
                                                                          239. model/transaction/transaction
                                                                          240. +
                                                                          241. model/wallet_configuration
                                                                          242. +
                                                                          243. tpay_button
                                                                          244. +
                                                                          245. tpay_method_channel
                                                                          246. +
                                                                          247. tpay_platform_interface
                                                                          248. +
                                                                          249. util/google_pay_configuration_util
                                                                          250. +
                                                                          251. util/google_pay_util
                                                                          252. +
                                                                          253. util/payment_channels_util
                                                                          254. +
                                                                          255. util/result_util
                                                                          256. +
                                                                          257. util/screenless_result_util
                                                                          @@ -176,7 +173,7 @@
                                                                          payment_method library
                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                          diff --git a/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library-sidebar.html b/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library-sidebar.html index df648bfe..08fa4594 100644 --- a/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library-sidebar.html +++ b/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library-sidebar.html @@ -1,6 +1,6 @@
                                                                            -
                                                                          1. Enums
                                                                          2. +
                                                                          3. Enums
                                                                          4. PaymentMethod
                                                                          5. diff --git a/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library.html b/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library.html index fb3bfd73..6a41050d 100644 --- a/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library.html +++ b/doc/model_paymentMethod_payment_method/model_paymentMethod_payment_method-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                            New URL

                                                                            +

                                                                            New URL

                                                                            \ No newline at end of file diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods-class-sidebar.html b/doc/model_paymentMethod_payment_methods/PaymentMethods-class-sidebar.html index 700d5c1b..92c69111 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods-class-sidebar.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods-class-sidebar.html @@ -1,7 +1,7 @@
                                                                            1. Constructors
                                                                            2. -
                                                                            3. PaymentMethods
                                                                            4. +
                                                                            5. new
                                                                            6. fromJson
                                                                            7. diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods-class.html b/doc/model_paymentMethod_payment_methods/PaymentMethods-class.html index d995a219..9fa98997 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods-class.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods-class.html @@ -25,24 +25,21 @@ menu
                                                                              PaymentMethods
                                                                              -
                                                                              - -
                                                                              +
                                                                              PaymentMethods class
                                                                              Annotations
                                                                              @@ -87,7 +84,7 @@

                                                                              PaymentMethods class

                                                                              Constructors

                                                                              -
                                                                              +
                                                                              PaymentMethods({required List<PaymentMethod> methods, List<DigitalWallet>? wallets, List<InstallmentPayment>? installmentPayments})
                                                                              @@ -253,7 +250,7 @@

                                                                              Operators

                                                                              @@ -266,7 +263,7 @@
                                                                              payment_methods library
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.fromJson.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.fromJson.html index b004a9eb..5ecde768 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.fromJson.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                              - -
                                                                              +
                                                                              Implementation

                                                                              @@ -94,7 +91,7 @@
                                                                              PaymentMethods class
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.html index 97e38a03..40f190d9 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.html @@ -4,8 +4,8 @@ - - PaymentMethods constructor - PaymentMethods - payment_methods library - Dart API + + PaymentMethods.new constructor - PaymentMethods - payment_methods library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                              PaymentMethods
                                                                              +
                                                                              PaymentMethods.new
                                                                              -
                                                                              - -
                                                                              +
                                                                              Implementation
                                                                              PaymentMethods class
                                                                              @@ -100,7 +97,7 @@
                                                                              PaymentMethods class
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/installmentPayments.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/installmentPayments.html index 73ff2499..f6ca4b8c 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods/installmentPayments.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods/installmentPayments.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                              - -
                                                                              +
                                                                              Implementation @@ -97,7 +94,7 @@
                                                                              PaymentMethods class
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/methods.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/methods.html index 6f52d9fc..b9b6a740 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods/methods.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods/methods.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                              - -
                                                                              +
                                                                              Implementation @@ -97,7 +94,7 @@
                                                                              PaymentMethods class
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/toJson.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/toJson.html index b1fd3a45..8a93e7ec 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods/toJson.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                              - -
                                                                              +
                                                                              Implementation @@ -97,7 +94,7 @@
                                                                              PaymentMethods class
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/wallets.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/wallets.html index 5a4d5e8c..451ab3b4 100644 --- a/doc/model_paymentMethod_payment_methods/PaymentMethods/wallets.html +++ b/doc/model_paymentMethod_payment_methods/PaymentMethods/wallets.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                              - -
                                                                              +
                                                                              Implementation @@ -97,7 +94,7 @@
                                                                              PaymentMethods class
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/index.html b/doc/model_paymentMethod_payment_methods/index.html index 2ebd39a9..86336faa 100644 --- a/doc/model_paymentMethod_payment_methods/index.html +++ b/doc/model_paymentMethod_payment_methods/index.html @@ -31,17 +31,14 @@ -
                                                                              - -
                                                                              +
                                                                              Classes
                                                                              flutter_tpay package
                                                                              1. Libraries
                                                                              2. -
                                                                              3. model/apple_pay_configuration
                                                                              4. -
                                                                              5. model/certificate_pinning_configuration
                                                                              6. -
                                                                              7. model/google_pay_configuration
                                                                              8. -
                                                                              9. model/language/language
                                                                              10. -
                                                                              11. model/language/languages
                                                                              12. -
                                                                              13. model/language/localized_string
                                                                              14. -
                                                                              15. model/merchant/merchant
                                                                              16. -
                                                                              17. model/merchant/merchant_authorization
                                                                              18. -
                                                                              19. model/merchant/merchant_details
                                                                              20. -
                                                                              21. model/payer/payer
                                                                              22. -
                                                                              23. model/payer/payer_address
                                                                              24. -
                                                                              25. model/payer/payer_context
                                                                              26. -
                                                                              27. model/paymentChannel/payment_channel
                                                                              28. -
                                                                              29. model/paymentChannel/payment_constraint
                                                                              30. -
                                                                              31. model/paymentChannel/payment_group
                                                                              32. -
                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                              34. -
                                                                              35. model/paymentMethod/blik_alias
                                                                              36. -
                                                                              37. model/paymentMethod/credit_card_brand
                                                                              38. -
                                                                              39. model/paymentMethod/digital_wallet
                                                                              40. -
                                                                              41. model/paymentMethod/installment_payment
                                                                              42. -
                                                                              43. model/paymentMethod/payment_method
                                                                              44. -
                                                                              45. model/paymentMethod/payment_methods
                                                                              46. -
                                                                              47. model/paymentMethod/tokenized_card
                                                                              48. -
                                                                              49. model/result/google_pay_configure_result
                                                                              50. -
                                                                              51. model/result/google_pay_open_result
                                                                              52. -
                                                                              53. model/result/payment_channels_result
                                                                              54. -
                                                                              55. model/result/result
                                                                              56. -
                                                                              57. model/result/screenless_result
                                                                              58. -
                                                                              59. model/screenless/ambiguous_alias
                                                                              60. -
                                                                              61. model/screenless/ambiguous_blik_payment
                                                                              62. -
                                                                              63. model/screenless/apple_pay_payment
                                                                              64. -
                                                                              65. model/screenless/blik_payment
                                                                              66. -
                                                                              67. model/screenless/callbacks
                                                                              68. -
                                                                              69. model/screenless/credit_card
                                                                              70. -
                                                                              71. model/screenless/credit_card_config
                                                                              72. -
                                                                              73. model/screenless/credit_card_payment
                                                                              74. -
                                                                              75. model/screenless/expiration_date
                                                                              76. -
                                                                              77. model/screenless/google_pay_environment
                                                                              78. -
                                                                              79. model/screenless/google_pay_payment
                                                                              80. -
                                                                              81. model/screenless/google_pay_utils_configuration
                                                                              82. -
                                                                              83. model/screenless/notifications
                                                                              84. -
                                                                              85. model/screenless/pay_po_payment
                                                                              86. -
                                                                              87. model/screenless/payment_details
                                                                              88. -
                                                                              89. model/screenless/raty_pekao_payment
                                                                              90. -
                                                                              91. model/screenless/recursive
                                                                              92. -
                                                                              93. model/screenless/redirects
                                                                              94. -
                                                                              95. model/screenless/screenless_payment
                                                                              96. -
                                                                              97. model/screenless/transfer_method
                                                                              98. -
                                                                              99. model/screenless/transfer_payment
                                                                              100. -
                                                                              101. model/tokenization/tokenization
                                                                              102. -
                                                                              103. model/tpay_configuration
                                                                              104. -
                                                                              105. model/tpay_environment
                                                                              106. -
                                                                              107. model/transaction/single_transaction
                                                                              108. -
                                                                              109. model/transaction/token_payment
                                                                              110. -
                                                                              111. model/transaction/transaction
                                                                              112. -
                                                                              113. model/wallet_configuration
                                                                              114. -
                                                                              115. tpay_button
                                                                              116. -
                                                                              117. tpay_method_channel
                                                                              118. -
                                                                              119. tpay_platform_interface
                                                                              120. -
                                                                              121. util/google_pay_configuration_util
                                                                              122. -
                                                                              123. util/google_pay_util
                                                                              124. -
                                                                              125. util/payment_channels_util
                                                                              126. -
                                                                              127. util/result_util
                                                                              128. -
                                                                              129. util/screenless_result_util
                                                                              130. +
                                                                              131. model/apple_pay_configuration
                                                                              132. +
                                                                              133. model/certificate_pinning_configuration
                                                                              134. +
                                                                              135. model/google_pay_configuration
                                                                              136. +
                                                                              137. model/language/language
                                                                              138. +
                                                                              139. model/language/languages
                                                                              140. +
                                                                              141. model/language/localized_string
                                                                              142. +
                                                                              143. model/merchant/merchant
                                                                              144. +
                                                                              145. model/merchant/merchant_authorization
                                                                              146. +
                                                                              147. model/merchant/merchant_details
                                                                              148. +
                                                                              149. model/payer/payer
                                                                              150. +
                                                                              151. model/payer/payer_address
                                                                              152. +
                                                                              153. model/payer/payer_context
                                                                              154. +
                                                                              155. model/paymentChannel/payment_channel
                                                                              156. +
                                                                              157. model/paymentChannel/payment_constraint
                                                                              158. +
                                                                              159. model/paymentChannel/payment_group
                                                                              160. +
                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                              162. +
                                                                              163. model/paymentMethod/blik_alias
                                                                              164. +
                                                                              165. model/paymentMethod/credit_card_brand
                                                                              166. +
                                                                              167. model/paymentMethod/digital_wallet
                                                                              168. +
                                                                              169. model/paymentMethod/installment_payment
                                                                              170. +
                                                                              171. model/paymentMethod/payment_method
                                                                              172. +
                                                                              173. model/paymentMethod/payment_methods
                                                                              174. +
                                                                              175. model/paymentMethod/tokenized_card
                                                                              176. +
                                                                              177. model/result/google_pay_configure_result
                                                                              178. +
                                                                              179. model/result/google_pay_open_result
                                                                              180. +
                                                                              181. model/result/payment_channels_result
                                                                              182. +
                                                                              183. model/result/result
                                                                              184. +
                                                                              185. model/result/screenless_result
                                                                              186. +
                                                                              187. model/screenless/ambiguous_alias
                                                                              188. +
                                                                              189. model/screenless/ambiguous_blik_payment
                                                                              190. +
                                                                              191. model/screenless/apple_pay_payment
                                                                              192. +
                                                                              193. model/screenless/blik_payment
                                                                              194. +
                                                                              195. model/screenless/callbacks
                                                                              196. +
                                                                              197. model/screenless/credit_card
                                                                              198. +
                                                                              199. model/screenless/credit_card_config
                                                                              200. +
                                                                              201. model/screenless/credit_card_payment
                                                                              202. +
                                                                              203. model/screenless/expiration_date
                                                                              204. +
                                                                              205. model/screenless/google_pay_environment
                                                                              206. +
                                                                              207. model/screenless/google_pay_payment
                                                                              208. +
                                                                              209. model/screenless/google_pay_utils_configuration
                                                                              210. +
                                                                              211. model/screenless/notifications
                                                                              212. +
                                                                              213. model/screenless/pay_po_payment
                                                                              214. +
                                                                              215. model/screenless/payment_details
                                                                              216. +
                                                                              217. model/screenless/raty_pekao_payment
                                                                              218. +
                                                                              219. model/screenless/recursive
                                                                              220. +
                                                                              221. model/screenless/redirects
                                                                              222. +
                                                                              223. model/screenless/screenless_payment
                                                                              224. +
                                                                              225. model/screenless/transfer_method
                                                                              226. +
                                                                              227. model/screenless/transfer_payment
                                                                              228. +
                                                                              229. model/tokenization/tokenization
                                                                              230. +
                                                                              231. model/tpay_configuration
                                                                              232. +
                                                                              233. model/tpay_environment
                                                                              234. +
                                                                              235. model/transaction/single_transaction
                                                                              236. +
                                                                              237. model/transaction/token_payment
                                                                              238. +
                                                                              239. model/transaction/transaction
                                                                              240. +
                                                                              241. model/wallet_configuration
                                                                              242. +
                                                                              243. tpay_button
                                                                              244. +
                                                                              245. tpay_method_channel
                                                                              246. +
                                                                              247. tpay_platform_interface
                                                                              248. +
                                                                              249. util/google_pay_configuration_util
                                                                              250. +
                                                                              251. util/google_pay_util
                                                                              252. +
                                                                              253. util/payment_channels_util
                                                                              254. +
                                                                              255. util/result_util
                                                                              256. +
                                                                              257. util/screenless_result_util
                                                                              @@ -177,7 +174,7 @@
                                                                              payment_methods library
                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library-sidebar.html b/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library-sidebar.html index 885b2d4c..9bebcc82 100644 --- a/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library-sidebar.html +++ b/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                -
                                                                              1. Classes
                                                                              2. +
                                                                              3. Classes
                                                                              4. PaymentMethods
                                                                              5. diff --git a/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library.html b/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library.html index 7585ae09..8cd556ac 100644 --- a/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library.html +++ b/doc/model_paymentMethod_payment_methods/model_paymentMethod_payment_methods-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                New URL

                                                                                +

                                                                                New URL

                                                                                \ No newline at end of file diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard-class-sidebar.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard-class-sidebar.html index 1a6a7203..d3a3b786 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard-class-sidebar.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                1. Constructors
                                                                                2. -
                                                                                3. TokenizedCard
                                                                                4. +
                                                                                5. new
                                                                                6. fromJson
                                                                                7. diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard-class.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard-class.html index 874ba32e..376ec81b 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard-class.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard-class.html @@ -25,24 +25,21 @@ menu
                                                                                  TokenizedCard
                                                                                  -
                                                                                  - -
                                                                                  +
                                                                                  TokenizedCard class
                                                                                  Annotations
                                                                                  @@ -87,7 +84,7 @@

                                                                                  TokenizedCard class

                                                                                  Constructors

                                                                                  -
                                                                                  +
                                                                                  TokenizedCard({required String token, required String cardTail, required CreditCardBrand brand})
                                                                                  @@ -253,7 +250,7 @@

                                                                                  Operators

                                                                                  @@ -266,7 +263,7 @@
                                                                                  tokenized_card library
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.fromJson.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.fromJson.html index 7ae09e34..7d6d5eca 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.fromJson.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                  - -
                                                                                  +
                                                                                  Implementation

                                                                                  @@ -94,7 +91,7 @@
                                                                                  TokenizedCard class
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.html index cb12800d..39948ff6 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.html @@ -4,8 +4,8 @@ - - TokenizedCard constructor - TokenizedCard - tokenized_card library - Dart API + + TokenizedCard.new constructor - TokenizedCard - tokenized_card library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                  TokenizedCard
                                                                                  +
                                                                                  TokenizedCard.new
                                                                                  -
                                                                                  - -
                                                                                  +
                                                                                  Implementation
                                                                                  TokenizedCard class
                                                                                  @@ -100,7 +97,7 @@
                                                                                  TokenizedCard class
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/brand.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/brand.html index feb0f349..6e3ffa7d 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard/brand.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard/brand.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                  - -
                                                                                  +
                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                  TokenizedCard class
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/cardTail.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/cardTail.html index 5ab039ee..643bb74a 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard/cardTail.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard/cardTail.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                  - -
                                                                                  +
                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                  TokenizedCard class
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/toJson.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/toJson.html index 8814ee81..aeeb0226 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard/toJson.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                  - -
                                                                                  +
                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                  TokenizedCard class
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/token.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/token.html index 7eb1857f..e155bfba 100644 --- a/doc/model_paymentMethod_tokenized_card/TokenizedCard/token.html +++ b/doc/model_paymentMethod_tokenized_card/TokenizedCard/token.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                  - -
                                                                                  +
                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                  TokenizedCard class
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/index.html b/doc/model_paymentMethod_tokenized_card/index.html index d13bae29..3f241082 100644 --- a/doc/model_paymentMethod_tokenized_card/index.html +++ b/doc/model_paymentMethod_tokenized_card/index.html @@ -31,17 +31,14 @@ -
                                                                                  - -
                                                                                  +
                                                                                  Classes
                                                                                  flutter_tpay package
                                                                                  1. Libraries
                                                                                  2. -
                                                                                  3. model/apple_pay_configuration
                                                                                  4. -
                                                                                  5. model/certificate_pinning_configuration
                                                                                  6. -
                                                                                  7. model/google_pay_configuration
                                                                                  8. -
                                                                                  9. model/language/language
                                                                                  10. -
                                                                                  11. model/language/languages
                                                                                  12. -
                                                                                  13. model/language/localized_string
                                                                                  14. -
                                                                                  15. model/merchant/merchant
                                                                                  16. -
                                                                                  17. model/merchant/merchant_authorization
                                                                                  18. -
                                                                                  19. model/merchant/merchant_details
                                                                                  20. -
                                                                                  21. model/payer/payer
                                                                                  22. -
                                                                                  23. model/payer/payer_address
                                                                                  24. -
                                                                                  25. model/payer/payer_context
                                                                                  26. -
                                                                                  27. model/paymentChannel/payment_channel
                                                                                  28. -
                                                                                  29. model/paymentChannel/payment_constraint
                                                                                  30. -
                                                                                  31. model/paymentChannel/payment_group
                                                                                  32. -
                                                                                  33. model/paymentMethod/automatic_payment_methods
                                                                                  34. -
                                                                                  35. model/paymentMethod/blik_alias
                                                                                  36. -
                                                                                  37. model/paymentMethod/credit_card_brand
                                                                                  38. -
                                                                                  39. model/paymentMethod/digital_wallet
                                                                                  40. -
                                                                                  41. model/paymentMethod/installment_payment
                                                                                  42. -
                                                                                  43. model/paymentMethod/payment_method
                                                                                  44. -
                                                                                  45. model/paymentMethod/payment_methods
                                                                                  46. -
                                                                                  47. model/paymentMethod/tokenized_card
                                                                                  48. -
                                                                                  49. model/result/google_pay_configure_result
                                                                                  50. -
                                                                                  51. model/result/google_pay_open_result
                                                                                  52. -
                                                                                  53. model/result/payment_channels_result
                                                                                  54. -
                                                                                  55. model/result/result
                                                                                  56. -
                                                                                  57. model/result/screenless_result
                                                                                  58. -
                                                                                  59. model/screenless/ambiguous_alias
                                                                                  60. -
                                                                                  61. model/screenless/ambiguous_blik_payment
                                                                                  62. -
                                                                                  63. model/screenless/apple_pay_payment
                                                                                  64. -
                                                                                  65. model/screenless/blik_payment
                                                                                  66. -
                                                                                  67. model/screenless/callbacks
                                                                                  68. -
                                                                                  69. model/screenless/credit_card
                                                                                  70. -
                                                                                  71. model/screenless/credit_card_config
                                                                                  72. -
                                                                                  73. model/screenless/credit_card_payment
                                                                                  74. -
                                                                                  75. model/screenless/expiration_date
                                                                                  76. -
                                                                                  77. model/screenless/google_pay_environment
                                                                                  78. -
                                                                                  79. model/screenless/google_pay_payment
                                                                                  80. -
                                                                                  81. model/screenless/google_pay_utils_configuration
                                                                                  82. -
                                                                                  83. model/screenless/notifications
                                                                                  84. -
                                                                                  85. model/screenless/pay_po_payment
                                                                                  86. -
                                                                                  87. model/screenless/payment_details
                                                                                  88. -
                                                                                  89. model/screenless/raty_pekao_payment
                                                                                  90. -
                                                                                  91. model/screenless/recursive
                                                                                  92. -
                                                                                  93. model/screenless/redirects
                                                                                  94. -
                                                                                  95. model/screenless/screenless_payment
                                                                                  96. -
                                                                                  97. model/screenless/transfer_method
                                                                                  98. -
                                                                                  99. model/screenless/transfer_payment
                                                                                  100. -
                                                                                  101. model/tokenization/tokenization
                                                                                  102. -
                                                                                  103. model/tpay_configuration
                                                                                  104. -
                                                                                  105. model/tpay_environment
                                                                                  106. -
                                                                                  107. model/transaction/single_transaction
                                                                                  108. -
                                                                                  109. model/transaction/token_payment
                                                                                  110. -
                                                                                  111. model/transaction/transaction
                                                                                  112. -
                                                                                  113. model/wallet_configuration
                                                                                  114. -
                                                                                  115. tpay_button
                                                                                  116. -
                                                                                  117. tpay_method_channel
                                                                                  118. -
                                                                                  119. tpay_platform_interface
                                                                                  120. -
                                                                                  121. util/google_pay_configuration_util
                                                                                  122. -
                                                                                  123. util/google_pay_util
                                                                                  124. -
                                                                                  125. util/payment_channels_util
                                                                                  126. -
                                                                                  127. util/result_util
                                                                                  128. -
                                                                                  129. util/screenless_result_util
                                                                                  130. +
                                                                                  131. model/apple_pay_configuration
                                                                                  132. +
                                                                                  133. model/certificate_pinning_configuration
                                                                                  134. +
                                                                                  135. model/google_pay_configuration
                                                                                  136. +
                                                                                  137. model/language/language
                                                                                  138. +
                                                                                  139. model/language/languages
                                                                                  140. +
                                                                                  141. model/language/localized_string
                                                                                  142. +
                                                                                  143. model/merchant/merchant
                                                                                  144. +
                                                                                  145. model/merchant/merchant_authorization
                                                                                  146. +
                                                                                  147. model/merchant/merchant_details
                                                                                  148. +
                                                                                  149. model/payer/payer
                                                                                  150. +
                                                                                  151. model/payer/payer_address
                                                                                  152. +
                                                                                  153. model/payer/payer_context
                                                                                  154. +
                                                                                  155. model/paymentChannel/payment_channel
                                                                                  156. +
                                                                                  157. model/paymentChannel/payment_constraint
                                                                                  158. +
                                                                                  159. model/paymentChannel/payment_group
                                                                                  160. +
                                                                                  161. model/paymentMethod/automatic_payment_methods
                                                                                  162. +
                                                                                  163. model/paymentMethod/blik_alias
                                                                                  164. +
                                                                                  165. model/paymentMethod/credit_card_brand
                                                                                  166. +
                                                                                  167. model/paymentMethod/digital_wallet
                                                                                  168. +
                                                                                  169. model/paymentMethod/installment_payment
                                                                                  170. +
                                                                                  171. model/paymentMethod/payment_method
                                                                                  172. +
                                                                                  173. model/paymentMethod/payment_methods
                                                                                  174. +
                                                                                  175. model/paymentMethod/tokenized_card
                                                                                  176. +
                                                                                  177. model/result/google_pay_configure_result
                                                                                  178. +
                                                                                  179. model/result/google_pay_open_result
                                                                                  180. +
                                                                                  181. model/result/payment_channels_result
                                                                                  182. +
                                                                                  183. model/result/result
                                                                                  184. +
                                                                                  185. model/result/screenless_result
                                                                                  186. +
                                                                                  187. model/screenless/ambiguous_alias
                                                                                  188. +
                                                                                  189. model/screenless/ambiguous_blik_payment
                                                                                  190. +
                                                                                  191. model/screenless/apple_pay_payment
                                                                                  192. +
                                                                                  193. model/screenless/blik_payment
                                                                                  194. +
                                                                                  195. model/screenless/callbacks
                                                                                  196. +
                                                                                  197. model/screenless/credit_card
                                                                                  198. +
                                                                                  199. model/screenless/credit_card_config
                                                                                  200. +
                                                                                  201. model/screenless/credit_card_payment
                                                                                  202. +
                                                                                  203. model/screenless/expiration_date
                                                                                  204. +
                                                                                  205. model/screenless/google_pay_environment
                                                                                  206. +
                                                                                  207. model/screenless/google_pay_payment
                                                                                  208. +
                                                                                  209. model/screenless/google_pay_utils_configuration
                                                                                  210. +
                                                                                  211. model/screenless/notifications
                                                                                  212. +
                                                                                  213. model/screenless/pay_po_payment
                                                                                  214. +
                                                                                  215. model/screenless/payment_details
                                                                                  216. +
                                                                                  217. model/screenless/raty_pekao_payment
                                                                                  218. +
                                                                                  219. model/screenless/recursive
                                                                                  220. +
                                                                                  221. model/screenless/redirects
                                                                                  222. +
                                                                                  223. model/screenless/screenless_payment
                                                                                  224. +
                                                                                  225. model/screenless/transfer_method
                                                                                  226. +
                                                                                  227. model/screenless/transfer_payment
                                                                                  228. +
                                                                                  229. model/tokenization/tokenization
                                                                                  230. +
                                                                                  231. model/tpay_configuration
                                                                                  232. +
                                                                                  233. model/tpay_environment
                                                                                  234. +
                                                                                  235. model/transaction/single_transaction
                                                                                  236. +
                                                                                  237. model/transaction/token_payment
                                                                                  238. +
                                                                                  239. model/transaction/transaction
                                                                                  240. +
                                                                                  241. model/wallet_configuration
                                                                                  242. +
                                                                                  243. tpay_button
                                                                                  244. +
                                                                                  245. tpay_method_channel
                                                                                  246. +
                                                                                  247. tpay_platform_interface
                                                                                  248. +
                                                                                  249. util/google_pay_configuration_util
                                                                                  250. +
                                                                                  251. util/google_pay_util
                                                                                  252. +
                                                                                  253. util/payment_channels_util
                                                                                  254. +
                                                                                  255. util/result_util
                                                                                  256. +
                                                                                  257. util/screenless_result_util
                                                                                  @@ -177,7 +174,7 @@
                                                                                  tokenized_card library
                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library-sidebar.html b/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library-sidebar.html index 307d7374..76dfd505 100644 --- a/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library-sidebar.html +++ b/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                    -
                                                                                  1. Classes
                                                                                  2. +
                                                                                  3. Classes
                                                                                  4. TokenizedCard
                                                                                  5. diff --git a/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library.html b/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library.html index b3ee13f3..e6ad1b8f 100644 --- a/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library.html +++ b/doc/model_paymentMethod_tokenized_card/model_paymentMethod_tokenized_card-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                    New URL

                                                                                    +

                                                                                    New URL

                                                                                    \ No newline at end of file diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class-sidebar.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class-sidebar.html index b465b4a1..f0dfb0fc 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class-sidebar.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                    1. Constructors
                                                                                    2. -
                                                                                    3. GooglePayConfigureError
                                                                                    4. +
                                                                                    5. new
                                                                                    6. diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class.html index 2697cc58..494e1250 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureError-class.html @@ -25,24 +25,21 @@ menu
                                                                                      GooglePayConfigureError
                                                                                      -
                                                                                      - -
                                                                                      +
                                                                                      GooglePayConfigureError class

                                                                                      Constructors

                                                                                      -
                                                                                      +
                                                                                      GooglePayConfigureError(String message)
                                                                                      @@ -213,7 +210,7 @@

                                                                                      Operators

                                                                                      @@ -226,7 +223,7 @@
                                                                                      google_pay_configure_result library
                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                      diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureError/GooglePayConfigureError.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureError/GooglePayConfigureError.html index e5d0f0d2..f2f78052 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureError/GooglePayConfigureError.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureError/GooglePayConfigureError.html @@ -4,8 +4,8 @@ - - GooglePayConfigureError constructor - GooglePayConfigureError - google_pay_configure_result library - Dart API + + GooglePayConfigureError.new constructor - GooglePayConfigureError - google_pay_configure_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                      GooglePayConfigureError
                                                                                      +
                                                                                      GooglePayConfigureError.new
                                                                                      -
                                                                                      - -
                                                                                      +
                                                                                      Implementation
                                                                                      GooglePayConfigureError class
                                                                                      @@ -94,7 +91,7 @@
                                                                                      GooglePayConfigureError class
                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                      diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureError/message.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureError/message.html index f8987259..60185277 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureError/message.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureError/message.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                      - -
                                                                                      +
                                                                                      Implementation @@ -97,7 +94,7 @@
                                                                                      GooglePayConfigureError class
                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                      diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class-sidebar.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class-sidebar.html index 269e4d86..52c8e96b 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class-sidebar.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                      1. Constructors
                                                                                      2. -
                                                                                      3. GooglePayConfigureResult
                                                                                      4. +
                                                                                      5. new
                                                                                      6. diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class.html index a887f065..9ca847c4 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureResult-class.html @@ -25,24 +25,21 @@ menu
                                                                                        GooglePayConfigureResult
                                                                                        -
                                                                                        - -
                                                                                        +
                                                                                        GooglePayConfigureResult class

                                                                                        Constructors

                                                                                        -
                                                                                        +
                                                                                        GooglePayConfigureResult()
                                                                                        @@ -196,7 +193,7 @@

                                                                                        Operators

                                                                                        @@ -209,7 +206,7 @@
                                                                                        google_pay_configure_result library
                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                        diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureResult/GooglePayConfigureResult.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureResult/GooglePayConfigureResult.html index f6fa9972..390a182f 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureResult/GooglePayConfigureResult.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureResult/GooglePayConfigureResult.html @@ -4,8 +4,8 @@ - - GooglePayConfigureResult constructor - GooglePayConfigureResult - google_pay_configure_result library - Dart API + + GooglePayConfigureResult.new constructor - GooglePayConfigureResult - google_pay_configure_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                        GooglePayConfigureResult
                                                                                        +
                                                                                        GooglePayConfigureResult.new
                                                                                        -
                                                                                        - -
                                                                                        +
                                                                                        GooglePayConfigureResult constructor
                                                                                        GooglePayConfigureResult class
                                                                                        @@ -89,7 +86,7 @@
                                                                                        GooglePayConfigureResult class
                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                        diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class-sidebar.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class-sidebar.html index 6329d38b..0e3c5f03 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class-sidebar.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                        1. Constructors
                                                                                        2. -
                                                                                        3. GooglePayConfigureSuccess
                                                                                        4. +
                                                                                        5. new
                                                                                        6. diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class.html index be2719fc..ed8d7aca 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess-class.html @@ -25,24 +25,21 @@ menu
                                                                                          GooglePayConfigureSuccess
                                                                                          -
                                                                                          - -
                                                                                          +
                                                                                          GooglePayConfigureSuccess class

                                                                                          Constructors

                                                                                          -
                                                                                          +
                                                                                          GooglePayConfigureSuccess()
                                                                                          @@ -198,7 +195,7 @@

                                                                                          Operators

                                                                                          @@ -211,7 +208,7 @@
                                                                                          google_pay_configure_result library
                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                          diff --git a/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess/GooglePayConfigureSuccess.html b/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess/GooglePayConfigureSuccess.html index 9f534c03..b1039088 100644 --- a/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess/GooglePayConfigureSuccess.html +++ b/doc/model_result_google_pay_configure_result/GooglePayConfigureSuccess/GooglePayConfigureSuccess.html @@ -4,8 +4,8 @@ - - GooglePayConfigureSuccess constructor - GooglePayConfigureSuccess - google_pay_configure_result library - Dart API + + GooglePayConfigureSuccess.new constructor - GooglePayConfigureSuccess - google_pay_configure_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                          GooglePayConfigureSuccess
                                                                                          +
                                                                                          GooglePayConfigureSuccess.new
                                                                                          -
                                                                                          - -
                                                                                          +
                                                                                          GooglePayConfigureSuccess constructor
                                                                                          GooglePayConfigureSuccess class
                                                                                          @@ -89,7 +86,7 @@
                                                                                          GooglePayConfigureSuccess class
                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                          diff --git a/doc/model_result_google_pay_configure_result/index.html b/doc/model_result_google_pay_configure_result/index.html index 2d8247dc..a3cce383 100644 --- a/doc/model_result_google_pay_configure_result/index.html +++ b/doc/model_result_google_pay_configure_result/index.html @@ -31,17 +31,14 @@ -
                                                                                          - -
                                                                                          +
                                                                                          Classes
                                                                                          flutter_tpay package
                                                                                          1. Libraries
                                                                                          2. -
                                                                                          3. model/apple_pay_configuration
                                                                                          4. -
                                                                                          5. model/certificate_pinning_configuration
                                                                                          6. -
                                                                                          7. model/google_pay_configuration
                                                                                          8. -
                                                                                          9. model/language/language
                                                                                          10. -
                                                                                          11. model/language/languages
                                                                                          12. -
                                                                                          13. model/language/localized_string
                                                                                          14. -
                                                                                          15. model/merchant/merchant
                                                                                          16. -
                                                                                          17. model/merchant/merchant_authorization
                                                                                          18. -
                                                                                          19. model/merchant/merchant_details
                                                                                          20. -
                                                                                          21. model/payer/payer
                                                                                          22. -
                                                                                          23. model/payer/payer_address
                                                                                          24. -
                                                                                          25. model/payer/payer_context
                                                                                          26. -
                                                                                          27. model/paymentChannel/payment_channel
                                                                                          28. -
                                                                                          29. model/paymentChannel/payment_constraint
                                                                                          30. -
                                                                                          31. model/paymentChannel/payment_group
                                                                                          32. -
                                                                                          33. model/paymentMethod/automatic_payment_methods
                                                                                          34. -
                                                                                          35. model/paymentMethod/blik_alias
                                                                                          36. -
                                                                                          37. model/paymentMethod/credit_card_brand
                                                                                          38. -
                                                                                          39. model/paymentMethod/digital_wallet
                                                                                          40. -
                                                                                          41. model/paymentMethod/installment_payment
                                                                                          42. -
                                                                                          43. model/paymentMethod/payment_method
                                                                                          44. -
                                                                                          45. model/paymentMethod/payment_methods
                                                                                          46. -
                                                                                          47. model/paymentMethod/tokenized_card
                                                                                          48. -
                                                                                          49. model/result/google_pay_configure_result
                                                                                          50. -
                                                                                          51. model/result/google_pay_open_result
                                                                                          52. -
                                                                                          53. model/result/payment_channels_result
                                                                                          54. -
                                                                                          55. model/result/result
                                                                                          56. -
                                                                                          57. model/result/screenless_result
                                                                                          58. -
                                                                                          59. model/screenless/ambiguous_alias
                                                                                          60. -
                                                                                          61. model/screenless/ambiguous_blik_payment
                                                                                          62. -
                                                                                          63. model/screenless/apple_pay_payment
                                                                                          64. -
                                                                                          65. model/screenless/blik_payment
                                                                                          66. -
                                                                                          67. model/screenless/callbacks
                                                                                          68. -
                                                                                          69. model/screenless/credit_card
                                                                                          70. -
                                                                                          71. model/screenless/credit_card_config
                                                                                          72. -
                                                                                          73. model/screenless/credit_card_payment
                                                                                          74. -
                                                                                          75. model/screenless/expiration_date
                                                                                          76. -
                                                                                          77. model/screenless/google_pay_environment
                                                                                          78. -
                                                                                          79. model/screenless/google_pay_payment
                                                                                          80. -
                                                                                          81. model/screenless/google_pay_utils_configuration
                                                                                          82. -
                                                                                          83. model/screenless/notifications
                                                                                          84. -
                                                                                          85. model/screenless/pay_po_payment
                                                                                          86. -
                                                                                          87. model/screenless/payment_details
                                                                                          88. -
                                                                                          89. model/screenless/raty_pekao_payment
                                                                                          90. -
                                                                                          91. model/screenless/recursive
                                                                                          92. -
                                                                                          93. model/screenless/redirects
                                                                                          94. -
                                                                                          95. model/screenless/screenless_payment
                                                                                          96. -
                                                                                          97. model/screenless/transfer_method
                                                                                          98. -
                                                                                          99. model/screenless/transfer_payment
                                                                                          100. -
                                                                                          101. model/tokenization/tokenization
                                                                                          102. -
                                                                                          103. model/tpay_configuration
                                                                                          104. -
                                                                                          105. model/tpay_environment
                                                                                          106. -
                                                                                          107. model/transaction/single_transaction
                                                                                          108. -
                                                                                          109. model/transaction/token_payment
                                                                                          110. -
                                                                                          111. model/transaction/transaction
                                                                                          112. -
                                                                                          113. model/wallet_configuration
                                                                                          114. -
                                                                                          115. tpay_button
                                                                                          116. -
                                                                                          117. tpay_method_channel
                                                                                          118. -
                                                                                          119. tpay_platform_interface
                                                                                          120. -
                                                                                          121. util/google_pay_configuration_util
                                                                                          122. -
                                                                                          123. util/google_pay_util
                                                                                          124. -
                                                                                          125. util/payment_channels_util
                                                                                          126. -
                                                                                          127. util/result_util
                                                                                          128. -
                                                                                          129. util/screenless_result_util
                                                                                          130. +
                                                                                          131. model/apple_pay_configuration
                                                                                          132. +
                                                                                          133. model/certificate_pinning_configuration
                                                                                          134. +
                                                                                          135. model/google_pay_configuration
                                                                                          136. +
                                                                                          137. model/language/language
                                                                                          138. +
                                                                                          139. model/language/languages
                                                                                          140. +
                                                                                          141. model/language/localized_string
                                                                                          142. +
                                                                                          143. model/merchant/merchant
                                                                                          144. +
                                                                                          145. model/merchant/merchant_authorization
                                                                                          146. +
                                                                                          147. model/merchant/merchant_details
                                                                                          148. +
                                                                                          149. model/payer/payer
                                                                                          150. +
                                                                                          151. model/payer/payer_address
                                                                                          152. +
                                                                                          153. model/payer/payer_context
                                                                                          154. +
                                                                                          155. model/paymentChannel/payment_channel
                                                                                          156. +
                                                                                          157. model/paymentChannel/payment_constraint
                                                                                          158. +
                                                                                          159. model/paymentChannel/payment_group
                                                                                          160. +
                                                                                          161. model/paymentMethod/automatic_payment_methods
                                                                                          162. +
                                                                                          163. model/paymentMethod/blik_alias
                                                                                          164. +
                                                                                          165. model/paymentMethod/credit_card_brand
                                                                                          166. +
                                                                                          167. model/paymentMethod/digital_wallet
                                                                                          168. +
                                                                                          169. model/paymentMethod/installment_payment
                                                                                          170. +
                                                                                          171. model/paymentMethod/payment_method
                                                                                          172. +
                                                                                          173. model/paymentMethod/payment_methods
                                                                                          174. +
                                                                                          175. model/paymentMethod/tokenized_card
                                                                                          176. +
                                                                                          177. model/result/google_pay_configure_result
                                                                                          178. +
                                                                                          179. model/result/google_pay_open_result
                                                                                          180. +
                                                                                          181. model/result/payment_channels_result
                                                                                          182. +
                                                                                          183. model/result/result
                                                                                          184. +
                                                                                          185. model/result/screenless_result
                                                                                          186. +
                                                                                          187. model/screenless/ambiguous_alias
                                                                                          188. +
                                                                                          189. model/screenless/ambiguous_blik_payment
                                                                                          190. +
                                                                                          191. model/screenless/apple_pay_payment
                                                                                          192. +
                                                                                          193. model/screenless/blik_payment
                                                                                          194. +
                                                                                          195. model/screenless/callbacks
                                                                                          196. +
                                                                                          197. model/screenless/credit_card
                                                                                          198. +
                                                                                          199. model/screenless/credit_card_config
                                                                                          200. +
                                                                                          201. model/screenless/credit_card_payment
                                                                                          202. +
                                                                                          203. model/screenless/expiration_date
                                                                                          204. +
                                                                                          205. model/screenless/google_pay_environment
                                                                                          206. +
                                                                                          207. model/screenless/google_pay_payment
                                                                                          208. +
                                                                                          209. model/screenless/google_pay_utils_configuration
                                                                                          210. +
                                                                                          211. model/screenless/notifications
                                                                                          212. +
                                                                                          213. model/screenless/pay_po_payment
                                                                                          214. +
                                                                                          215. model/screenless/payment_details
                                                                                          216. +
                                                                                          217. model/screenless/raty_pekao_payment
                                                                                          218. +
                                                                                          219. model/screenless/recursive
                                                                                          220. +
                                                                                          221. model/screenless/redirects
                                                                                          222. +
                                                                                          223. model/screenless/screenless_payment
                                                                                          224. +
                                                                                          225. model/screenless/transfer_method
                                                                                          226. +
                                                                                          227. model/screenless/transfer_payment
                                                                                          228. +
                                                                                          229. model/tokenization/tokenization
                                                                                          230. +
                                                                                          231. model/tpay_configuration
                                                                                          232. +
                                                                                          233. model/tpay_environment
                                                                                          234. +
                                                                                          235. model/transaction/single_transaction
                                                                                          236. +
                                                                                          237. model/transaction/token_payment
                                                                                          238. +
                                                                                          239. model/transaction/transaction
                                                                                          240. +
                                                                                          241. model/wallet_configuration
                                                                                          242. +
                                                                                          243. tpay_button
                                                                                          244. +
                                                                                          245. tpay_method_channel
                                                                                          246. +
                                                                                          247. tpay_platform_interface
                                                                                          248. +
                                                                                          249. util/google_pay_configuration_util
                                                                                          250. +
                                                                                          251. util/google_pay_util
                                                                                          252. +
                                                                                          253. util/payment_channels_util
                                                                                          254. +
                                                                                          255. util/result_util
                                                                                          256. +
                                                                                          257. util/screenless_result_util
                                                                                          @@ -192,7 +189,7 @@
                                                                                          google_pay_configure_result library
                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                          diff --git a/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library-sidebar.html b/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library-sidebar.html index f1dde2c2..23b44ac7 100644 --- a/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library-sidebar.html +++ b/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                            -
                                                                                          1. Classes
                                                                                          2. +
                                                                                          3. Classes
                                                                                          4. GooglePayConfigureError
                                                                                          5. GooglePayConfigureResult
                                                                                          6. GooglePayConfigureSuccess
                                                                                          7. diff --git a/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library.html b/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library.html index 522c344d..c532901e 100644 --- a/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library.html +++ b/doc/model_result_google_pay_configure_result/model_result_google_pay_configure_result-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                            New URL

                                                                                            +

                                                                                            New URL

                                                                                            \ No newline at end of file diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class-sidebar.html b/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class-sidebar.html index fd123980..f24e2a46 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class-sidebar.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                            1. Constructors
                                                                                            2. -
                                                                                            3. GooglePayOpenCancelled
                                                                                            4. +
                                                                                            5. new
                                                                                            6. diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class.html b/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class.html index 7dfb7fcc..9cc1879c 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenCancelled-class.html @@ -25,24 +25,21 @@ menu
                                                                                              GooglePayOpenCancelled
                                                                                              -
                                                                                              - -
                                                                                              +
                                                                                              GooglePayOpenCancelled class

                                                                                              Constructors

                                                                                              -
                                                                                              +
                                                                                              GooglePayOpenCancelled()
                                                                                              @@ -199,7 +196,7 @@

                                                                                              Operators

                                                                                              @@ -212,7 +209,7 @@
                                                                                              google_pay_open_result library
                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                              diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenCancelled/GooglePayOpenCancelled.html b/doc/model_result_google_pay_open_result/GooglePayOpenCancelled/GooglePayOpenCancelled.html index 9be8dcfb..5214aa7e 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenCancelled/GooglePayOpenCancelled.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenCancelled/GooglePayOpenCancelled.html @@ -4,8 +4,8 @@ - - GooglePayOpenCancelled constructor - GooglePayOpenCancelled - google_pay_open_result library - Dart API + + GooglePayOpenCancelled.new constructor - GooglePayOpenCancelled - google_pay_open_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                              GooglePayOpenCancelled
                                                                                              +
                                                                                              GooglePayOpenCancelled.new
                                                                                              -
                                                                                              - -
                                                                                              +
                                                                                              GooglePayOpenCancelled constructor
                                                                                              GooglePayOpenCancelled class
                                                                                              @@ -89,7 +86,7 @@
                                                                                              GooglePayOpenCancelled class
                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                              diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class-sidebar.html b/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class-sidebar.html index 0b6d742b..8fa242fa 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class-sidebar.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                              1. Constructors
                                                                                              2. -
                                                                                              3. GooglePayOpenNotConfigured
                                                                                              4. +
                                                                                              5. new
                                                                                              6. diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class.html b/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class.html index 2d6befcd..3daaef87 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured-class.html @@ -25,24 +25,21 @@ menu
                                                                                                GooglePayOpenNotConfigured
                                                                                                -
                                                                                                - -
                                                                                                +
                                                                                                GooglePayOpenNotConfigured class

                                                                                                Constructors

                                                                                                -
                                                                                                +
                                                                                                GooglePayOpenNotConfigured()
                                                                                                @@ -199,7 +196,7 @@

                                                                                                Operators

                                                                                                @@ -212,7 +209,7 @@
                                                                                                google_pay_open_result library
                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured/GooglePayOpenNotConfigured.html b/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured/GooglePayOpenNotConfigured.html index bca60111..868d4341 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured/GooglePayOpenNotConfigured.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenNotConfigured/GooglePayOpenNotConfigured.html @@ -4,8 +4,8 @@ - - GooglePayOpenNotConfigured constructor - GooglePayOpenNotConfigured - google_pay_open_result library - Dart API + + GooglePayOpenNotConfigured.new constructor - GooglePayOpenNotConfigured - google_pay_open_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                GooglePayOpenNotConfigured
                                                                                                +
                                                                                                GooglePayOpenNotConfigured.new
                                                                                                -
                                                                                                - -
                                                                                                +
                                                                                                GooglePayOpenNotConfigured constructor
                                                                                                GooglePayOpenNotConfigured class
                                                                                                @@ -89,7 +86,7 @@
                                                                                                GooglePayOpenNotConfigured class
                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenResult-class-sidebar.html b/doc/model_result_google_pay_open_result/GooglePayOpenResult-class-sidebar.html index 0540053c..96a01dee 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenResult-class-sidebar.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenResult-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                1. Constructors
                                                                                                2. -
                                                                                                3. GooglePayOpenResult
                                                                                                4. +
                                                                                                5. new
                                                                                                6. diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenResult-class.html b/doc/model_result_google_pay_open_result/GooglePayOpenResult-class.html index 186de64a..8cfdc142 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenResult-class.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenResult-class.html @@ -25,24 +25,21 @@ menu
                                                                                                  GooglePayOpenResult
                                                                                                  -
                                                                                                  - -
                                                                                                  +
                                                                                                  GooglePayOpenResult class

                                                                                                  Constructors

                                                                                                  -
                                                                                                  +
                                                                                                  GooglePayOpenResult()
                                                                                                  @@ -198,7 +195,7 @@

                                                                                                  Operators

                                                                                                  @@ -211,7 +208,7 @@
                                                                                                  google_pay_open_result library
                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                  diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenResult/GooglePayOpenResult.html b/doc/model_result_google_pay_open_result/GooglePayOpenResult/GooglePayOpenResult.html index d8a32669..399621fe 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenResult/GooglePayOpenResult.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenResult/GooglePayOpenResult.html @@ -4,8 +4,8 @@ - - GooglePayOpenResult constructor - GooglePayOpenResult - google_pay_open_result library - Dart API + + GooglePayOpenResult.new constructor - GooglePayOpenResult - google_pay_open_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                  GooglePayOpenResult
                                                                                                  +
                                                                                                  GooglePayOpenResult.new
                                                                                                  -
                                                                                                  - -
                                                                                                  +
                                                                                                  GooglePayOpenResult constructor
                                                                                                  GooglePayOpenResult class
                                                                                                  @@ -89,7 +86,7 @@
                                                                                                  GooglePayOpenResult class
                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                  diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class-sidebar.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class-sidebar.html index eb676fd0..74d1dea5 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class-sidebar.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                  1. Constructors
                                                                                                  2. -
                                                                                                  3. GooglePayOpenSuccess
                                                                                                  4. +
                                                                                                  5. new
                                                                                                  6. diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class.html index 56e10270..f369fee2 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess-class.html @@ -25,24 +25,21 @@ menu
                                                                                                    GooglePayOpenSuccess
                                                                                                    -
                                                                                                    - -
                                                                                                    +
                                                                                                    GooglePayOpenSuccess class

                                                                                                    Constructors

                                                                                                    -
                                                                                                    +
                                                                                                    GooglePayOpenSuccess({required String token, required String description, required String cardNetwork, required String cardTail})
                                                                                                    @@ -253,7 +250,7 @@

                                                                                                    Operators

                                                                                                    @@ -266,7 +263,7 @@
                                                                                                    google_pay_open_result library
                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                    diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/GooglePayOpenSuccess.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/GooglePayOpenSuccess.html index a5fcc96f..e7fb2405 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/GooglePayOpenSuccess.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/GooglePayOpenSuccess.html @@ -4,8 +4,8 @@ - - GooglePayOpenSuccess constructor - GooglePayOpenSuccess - google_pay_open_result library - Dart API + + GooglePayOpenSuccess.new constructor - GooglePayOpenSuccess - google_pay_open_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                    GooglePayOpenSuccess
                                                                                                    +
                                                                                                    GooglePayOpenSuccess.new
                                                                                                    -
                                                                                                    - -
                                                                                                    +
                                                                                                    Implementation
                                                                                                    GooglePayOpenSuccess class
                                                                                                    @@ -102,7 +99,7 @@
                                                                                                    GooglePayOpenSuccess class
                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                    diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardNetwork.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardNetwork.html index 78db972b..ed5ad241 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardNetwork.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardNetwork.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                    - -
                                                                                                    +
                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                    GooglePayOpenSuccess class
                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                    diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardTail.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardTail.html index d6117132..2c6f9097 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardTail.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/cardTail.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                    - -
                                                                                                    +
                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                    GooglePayOpenSuccess class
                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                    diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/description.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/description.html index 15dfd0f9..6e660aae 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/description.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/description.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                    - -
                                                                                                    +
                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                    GooglePayOpenSuccess class
                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                    diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/token.html b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/token.html index 1d03b362..cc36d87e 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/token.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenSuccess/token.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                    - -
                                                                                                    +
                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                    GooglePayOpenSuccess class
                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                    diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class-sidebar.html b/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class-sidebar.html index 40dc9c36..b1cf6ac5 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class-sidebar.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                    1. Constructors
                                                                                                    2. -
                                                                                                    3. GooglePayOpenUnknownError
                                                                                                    4. +
                                                                                                    5. new
                                                                                                    6. diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class.html b/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class.html index d3f097cb..7e0d51b1 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                      GooglePayOpenUnknownError
                                                                                                      -
                                                                                                      - -
                                                                                                      +
                                                                                                      GooglePayOpenUnknownError class

                                                                                                      Constructors

                                                                                                      -
                                                                                                      +
                                                                                                      GooglePayOpenUnknownError()
                                                                                                      @@ -199,7 +196,7 @@

                                                                                                      Operators

                                                                                                      @@ -212,7 +209,7 @@
                                                                                                      google_pay_open_result library
                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                      diff --git a/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError/GooglePayOpenUnknownError.html b/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError/GooglePayOpenUnknownError.html index ef3b0321..59caf772 100644 --- a/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError/GooglePayOpenUnknownError.html +++ b/doc/model_result_google_pay_open_result/GooglePayOpenUnknownError/GooglePayOpenUnknownError.html @@ -4,8 +4,8 @@ - - GooglePayOpenUnknownError constructor - GooglePayOpenUnknownError - google_pay_open_result library - Dart API + + GooglePayOpenUnknownError.new constructor - GooglePayOpenUnknownError - google_pay_open_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                      GooglePayOpenUnknownError
                                                                                                      +
                                                                                                      GooglePayOpenUnknownError.new
                                                                                                      -
                                                                                                      - -
                                                                                                      +
                                                                                                      GooglePayOpenUnknownError constructor
                                                                                                      GooglePayOpenUnknownError class
                                                                                                      @@ -89,7 +86,7 @@
                                                                                                      GooglePayOpenUnknownError class
                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                      diff --git a/doc/model_result_google_pay_open_result/index.html b/doc/model_result_google_pay_open_result/index.html index 41c83bd3..fbe9faa0 100644 --- a/doc/model_result_google_pay_open_result/index.html +++ b/doc/model_result_google_pay_open_result/index.html @@ -31,17 +31,14 @@ -
                                                                                                      - -
                                                                                                      +
                                                                                                      Classes
                                                                                                      flutter_tpay package
                                                                                                      1. Libraries
                                                                                                      2. -
                                                                                                      3. model/apple_pay_configuration
                                                                                                      4. -
                                                                                                      5. model/certificate_pinning_configuration
                                                                                                      6. -
                                                                                                      7. model/google_pay_configuration
                                                                                                      8. -
                                                                                                      9. model/language/language
                                                                                                      10. -
                                                                                                      11. model/language/languages
                                                                                                      12. -
                                                                                                      13. model/language/localized_string
                                                                                                      14. -
                                                                                                      15. model/merchant/merchant
                                                                                                      16. -
                                                                                                      17. model/merchant/merchant_authorization
                                                                                                      18. -
                                                                                                      19. model/merchant/merchant_details
                                                                                                      20. -
                                                                                                      21. model/payer/payer
                                                                                                      22. -
                                                                                                      23. model/payer/payer_address
                                                                                                      24. -
                                                                                                      25. model/payer/payer_context
                                                                                                      26. -
                                                                                                      27. model/paymentChannel/payment_channel
                                                                                                      28. -
                                                                                                      29. model/paymentChannel/payment_constraint
                                                                                                      30. -
                                                                                                      31. model/paymentChannel/payment_group
                                                                                                      32. -
                                                                                                      33. model/paymentMethod/automatic_payment_methods
                                                                                                      34. -
                                                                                                      35. model/paymentMethod/blik_alias
                                                                                                      36. -
                                                                                                      37. model/paymentMethod/credit_card_brand
                                                                                                      38. -
                                                                                                      39. model/paymentMethod/digital_wallet
                                                                                                      40. -
                                                                                                      41. model/paymentMethod/installment_payment
                                                                                                      42. -
                                                                                                      43. model/paymentMethod/payment_method
                                                                                                      44. -
                                                                                                      45. model/paymentMethod/payment_methods
                                                                                                      46. -
                                                                                                      47. model/paymentMethod/tokenized_card
                                                                                                      48. -
                                                                                                      49. model/result/google_pay_configure_result
                                                                                                      50. -
                                                                                                      51. model/result/google_pay_open_result
                                                                                                      52. -
                                                                                                      53. model/result/payment_channels_result
                                                                                                      54. -
                                                                                                      55. model/result/result
                                                                                                      56. -
                                                                                                      57. model/result/screenless_result
                                                                                                      58. -
                                                                                                      59. model/screenless/ambiguous_alias
                                                                                                      60. -
                                                                                                      61. model/screenless/ambiguous_blik_payment
                                                                                                      62. -
                                                                                                      63. model/screenless/apple_pay_payment
                                                                                                      64. -
                                                                                                      65. model/screenless/blik_payment
                                                                                                      66. -
                                                                                                      67. model/screenless/callbacks
                                                                                                      68. -
                                                                                                      69. model/screenless/credit_card
                                                                                                      70. -
                                                                                                      71. model/screenless/credit_card_config
                                                                                                      72. -
                                                                                                      73. model/screenless/credit_card_payment
                                                                                                      74. -
                                                                                                      75. model/screenless/expiration_date
                                                                                                      76. -
                                                                                                      77. model/screenless/google_pay_environment
                                                                                                      78. -
                                                                                                      79. model/screenless/google_pay_payment
                                                                                                      80. -
                                                                                                      81. model/screenless/google_pay_utils_configuration
                                                                                                      82. -
                                                                                                      83. model/screenless/notifications
                                                                                                      84. -
                                                                                                      85. model/screenless/pay_po_payment
                                                                                                      86. -
                                                                                                      87. model/screenless/payment_details
                                                                                                      88. -
                                                                                                      89. model/screenless/raty_pekao_payment
                                                                                                      90. -
                                                                                                      91. model/screenless/recursive
                                                                                                      92. -
                                                                                                      93. model/screenless/redirects
                                                                                                      94. -
                                                                                                      95. model/screenless/screenless_payment
                                                                                                      96. -
                                                                                                      97. model/screenless/transfer_method
                                                                                                      98. -
                                                                                                      99. model/screenless/transfer_payment
                                                                                                      100. -
                                                                                                      101. model/tokenization/tokenization
                                                                                                      102. -
                                                                                                      103. model/tpay_configuration
                                                                                                      104. -
                                                                                                      105. model/tpay_environment
                                                                                                      106. -
                                                                                                      107. model/transaction/single_transaction
                                                                                                      108. -
                                                                                                      109. model/transaction/token_payment
                                                                                                      110. -
                                                                                                      111. model/transaction/transaction
                                                                                                      112. -
                                                                                                      113. model/wallet_configuration
                                                                                                      114. -
                                                                                                      115. tpay_button
                                                                                                      116. -
                                                                                                      117. tpay_method_channel
                                                                                                      118. -
                                                                                                      119. tpay_platform_interface
                                                                                                      120. -
                                                                                                      121. util/google_pay_configuration_util
                                                                                                      122. -
                                                                                                      123. util/google_pay_util
                                                                                                      124. -
                                                                                                      125. util/payment_channels_util
                                                                                                      126. -
                                                                                                      127. util/result_util
                                                                                                      128. -
                                                                                                      129. util/screenless_result_util
                                                                                                      130. +
                                                                                                      131. model/apple_pay_configuration
                                                                                                      132. +
                                                                                                      133. model/certificate_pinning_configuration
                                                                                                      134. +
                                                                                                      135. model/google_pay_configuration
                                                                                                      136. +
                                                                                                      137. model/language/language
                                                                                                      138. +
                                                                                                      139. model/language/languages
                                                                                                      140. +
                                                                                                      141. model/language/localized_string
                                                                                                      142. +
                                                                                                      143. model/merchant/merchant
                                                                                                      144. +
                                                                                                      145. model/merchant/merchant_authorization
                                                                                                      146. +
                                                                                                      147. model/merchant/merchant_details
                                                                                                      148. +
                                                                                                      149. model/payer/payer
                                                                                                      150. +
                                                                                                      151. model/payer/payer_address
                                                                                                      152. +
                                                                                                      153. model/payer/payer_context
                                                                                                      154. +
                                                                                                      155. model/paymentChannel/payment_channel
                                                                                                      156. +
                                                                                                      157. model/paymentChannel/payment_constraint
                                                                                                      158. +
                                                                                                      159. model/paymentChannel/payment_group
                                                                                                      160. +
                                                                                                      161. model/paymentMethod/automatic_payment_methods
                                                                                                      162. +
                                                                                                      163. model/paymentMethod/blik_alias
                                                                                                      164. +
                                                                                                      165. model/paymentMethod/credit_card_brand
                                                                                                      166. +
                                                                                                      167. model/paymentMethod/digital_wallet
                                                                                                      168. +
                                                                                                      169. model/paymentMethod/installment_payment
                                                                                                      170. +
                                                                                                      171. model/paymentMethod/payment_method
                                                                                                      172. +
                                                                                                      173. model/paymentMethod/payment_methods
                                                                                                      174. +
                                                                                                      175. model/paymentMethod/tokenized_card
                                                                                                      176. +
                                                                                                      177. model/result/google_pay_configure_result
                                                                                                      178. +
                                                                                                      179. model/result/google_pay_open_result
                                                                                                      180. +
                                                                                                      181. model/result/payment_channels_result
                                                                                                      182. +
                                                                                                      183. model/result/result
                                                                                                      184. +
                                                                                                      185. model/result/screenless_result
                                                                                                      186. +
                                                                                                      187. model/screenless/ambiguous_alias
                                                                                                      188. +
                                                                                                      189. model/screenless/ambiguous_blik_payment
                                                                                                      190. +
                                                                                                      191. model/screenless/apple_pay_payment
                                                                                                      192. +
                                                                                                      193. model/screenless/blik_payment
                                                                                                      194. +
                                                                                                      195. model/screenless/callbacks
                                                                                                      196. +
                                                                                                      197. model/screenless/credit_card
                                                                                                      198. +
                                                                                                      199. model/screenless/credit_card_config
                                                                                                      200. +
                                                                                                      201. model/screenless/credit_card_payment
                                                                                                      202. +
                                                                                                      203. model/screenless/expiration_date
                                                                                                      204. +
                                                                                                      205. model/screenless/google_pay_environment
                                                                                                      206. +
                                                                                                      207. model/screenless/google_pay_payment
                                                                                                      208. +
                                                                                                      209. model/screenless/google_pay_utils_configuration
                                                                                                      210. +
                                                                                                      211. model/screenless/notifications
                                                                                                      212. +
                                                                                                      213. model/screenless/pay_po_payment
                                                                                                      214. +
                                                                                                      215. model/screenless/payment_details
                                                                                                      216. +
                                                                                                      217. model/screenless/raty_pekao_payment
                                                                                                      218. +
                                                                                                      219. model/screenless/recursive
                                                                                                      220. +
                                                                                                      221. model/screenless/redirects
                                                                                                      222. +
                                                                                                      223. model/screenless/screenless_payment
                                                                                                      224. +
                                                                                                      225. model/screenless/transfer_method
                                                                                                      226. +
                                                                                                      227. model/screenless/transfer_payment
                                                                                                      228. +
                                                                                                      229. model/tokenization/tokenization
                                                                                                      230. +
                                                                                                      231. model/tpay_configuration
                                                                                                      232. +
                                                                                                      233. model/tpay_environment
                                                                                                      234. +
                                                                                                      235. model/transaction/single_transaction
                                                                                                      236. +
                                                                                                      237. model/transaction/token_payment
                                                                                                      238. +
                                                                                                      239. model/transaction/transaction
                                                                                                      240. +
                                                                                                      241. model/wallet_configuration
                                                                                                      242. +
                                                                                                      243. tpay_button
                                                                                                      244. +
                                                                                                      245. tpay_method_channel
                                                                                                      246. +
                                                                                                      247. tpay_platform_interface
                                                                                                      248. +
                                                                                                      249. util/google_pay_configuration_util
                                                                                                      250. +
                                                                                                      251. util/google_pay_util
                                                                                                      252. +
                                                                                                      253. util/payment_channels_util
                                                                                                      254. +
                                                                                                      255. util/result_util
                                                                                                      256. +
                                                                                                      257. util/screenless_result_util
                                                                                                      @@ -212,7 +209,7 @@
                                                                                                      google_pay_open_result library
                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                      diff --git a/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library-sidebar.html b/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library-sidebar.html index bed311ab..e1cc680a 100644 --- a/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library-sidebar.html +++ b/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                        -
                                                                                                      1. Classes
                                                                                                      2. +
                                                                                                      3. Classes
                                                                                                      4. GooglePayOpenCancelled
                                                                                                      5. GooglePayOpenNotConfigured
                                                                                                      6. GooglePayOpenResult
                                                                                                      7. diff --git a/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library.html b/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library.html index e0eba1ed..a887938d 100644 --- a/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library.html +++ b/doc/model_result_google_pay_open_result/model_result_google_pay_open_result-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                        New URL

                                                                                                        +

                                                                                                        New URL

                                                                                                        \ No newline at end of file diff --git a/doc/model_result_payment_channels_result/PaymentChannelsError-class-sidebar.html b/doc/model_result_payment_channels_result/PaymentChannelsError-class-sidebar.html index 9ee41d30..f255d26e 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsError-class-sidebar.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                        1. Constructors
                                                                                                        2. -
                                                                                                        3. PaymentChannelsError
                                                                                                        4. +
                                                                                                        5. new
                                                                                                        6. diff --git a/doc/model_result_payment_channels_result/PaymentChannelsError-class.html b/doc/model_result_payment_channels_result/PaymentChannelsError-class.html index 7eda18a8..d3acbc21 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsError-class.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                          PaymentChannelsError
                                                                                                          -
                                                                                                          - -
                                                                                                          +
                                                                                                          PaymentChannelsError class

                                                                                                          Constructors

                                                                                                          -
                                                                                                          +
                                                                                                          PaymentChannelsError({required String message})
                                                                                                          @@ -213,7 +210,7 @@

                                                                                                          Operators

                                                                                                          @@ -226,7 +223,7 @@
                                                                                                          payment_channels_result library
                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                          diff --git a/doc/model_result_payment_channels_result/PaymentChannelsError/PaymentChannelsError.html b/doc/model_result_payment_channels_result/PaymentChannelsError/PaymentChannelsError.html index 8ca8861d..84019815 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsError/PaymentChannelsError.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsError/PaymentChannelsError.html @@ -4,8 +4,8 @@ - - PaymentChannelsError constructor - PaymentChannelsError - payment_channels_result library - Dart API + + PaymentChannelsError.new constructor - PaymentChannelsError - payment_channels_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                          PaymentChannelsError
                                                                                                          +
                                                                                                          PaymentChannelsError.new
                                                                                                          -
                                                                                                          - -
                                                                                                          +
                                                                                                          Implementation
                                                                                                          PaymentChannelsError class
                                                                                                          @@ -94,7 +91,7 @@
                                                                                                          PaymentChannelsError class
                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                          diff --git a/doc/model_result_payment_channels_result/PaymentChannelsError/message.html b/doc/model_result_payment_channels_result/PaymentChannelsError/message.html index 911f3ec4..1c17e781 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsError/message.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsError/message.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                          - -
                                                                                                          +
                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                          PaymentChannelsError class
                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                          diff --git a/doc/model_result_payment_channels_result/PaymentChannelsResult-class-sidebar.html b/doc/model_result_payment_channels_result/PaymentChannelsResult-class-sidebar.html index 16c6281b..149d212b 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsResult-class-sidebar.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsResult-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                          1. Constructors
                                                                                                          2. -
                                                                                                          3. PaymentChannelsResult
                                                                                                          4. +
                                                                                                          5. new
                                                                                                          6. diff --git a/doc/model_result_payment_channels_result/PaymentChannelsResult-class.html b/doc/model_result_payment_channels_result/PaymentChannelsResult-class.html index 61af85fe..53ade86a 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsResult-class.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsResult-class.html @@ -25,24 +25,21 @@ menu
                                                                                                            PaymentChannelsResult
                                                                                                            -
                                                                                                            - -
                                                                                                            +
                                                                                                            PaymentChannelsResult class

                                                                                                            Constructors

                                                                                                            -
                                                                                                            +
                                                                                                            PaymentChannelsResult()
                                                                                                            @@ -196,7 +193,7 @@

                                                                                                            Operators

                                                                                                            @@ -209,7 +206,7 @@
                                                                                                            payment_channels_result library
                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                            diff --git a/doc/model_result_payment_channels_result/PaymentChannelsResult/PaymentChannelsResult.html b/doc/model_result_payment_channels_result/PaymentChannelsResult/PaymentChannelsResult.html index 5ea7d746..61674ac0 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsResult/PaymentChannelsResult.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsResult/PaymentChannelsResult.html @@ -4,8 +4,8 @@ - - PaymentChannelsResult constructor - PaymentChannelsResult - payment_channels_result library - Dart API + + PaymentChannelsResult.new constructor - PaymentChannelsResult - payment_channels_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                            PaymentChannelsResult
                                                                                                            +
                                                                                                            PaymentChannelsResult.new
                                                                                                            -
                                                                                                            - -
                                                                                                            +
                                                                                                            PaymentChannelsResult constructor
                                                                                                            PaymentChannelsResult class
                                                                                                            @@ -89,7 +86,7 @@
                                                                                                            PaymentChannelsResult class
                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                            diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class-sidebar.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class-sidebar.html index e456e977..8d2881a0 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class-sidebar.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                            1. Constructors
                                                                                                            2. -
                                                                                                            3. PaymentChannelsSuccess
                                                                                                            4. +
                                                                                                            5. new
                                                                                                            6. fromJson
                                                                                                            7. diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class.html index 4b26e875..3862354e 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsSuccess-class.html @@ -25,24 +25,21 @@ menu
                                                                                                              PaymentChannelsSuccess
                                                                                                              -
                                                                                                              - -
                                                                                                              +
                                                                                                              PaymentChannelsSuccess class
                                                                                                              Annotations
                                                                                                              @@ -97,7 +94,7 @@

                                                                                                              PaymentChannelsSuccess class

                                                                                                              Constructors

                                                                                                              -
                                                                                                              +
                                                                                                              PaymentChannelsSuccess({required List<PaymentChannel> channels})
                                                                                                              @@ -239,7 +236,7 @@

                                                                                                              Operators

                                                                                                              @@ -252,7 +249,7 @@
                                                                                                              payment_channels_result library
                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.fromJson.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.fromJson.html index e135b3c6..0c82cd35 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.fromJson.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                              - -
                                                                                                              +
                                                                                                              Implementation

                                                                                                              @@ -94,7 +91,7 @@
                                                                                                              PaymentChannelsSuccess class
                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.html index 2f247c3e..4adba41d 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.html @@ -4,8 +4,8 @@ - - PaymentChannelsSuccess constructor - PaymentChannelsSuccess - payment_channels_result library - Dart API + + PaymentChannelsSuccess.new constructor - PaymentChannelsSuccess - payment_channels_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                              PaymentChannelsSuccess
                                                                                                              +
                                                                                                              PaymentChannelsSuccess.new
                                                                                                              -
                                                                                                              - -
                                                                                                              +
                                                                                                              Implementation
                                                                                                              PaymentChannelsSuccess class
                                                                                                              @@ -96,7 +93,7 @@
                                                                                                              PaymentChannelsSuccess class
                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/channels.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/channels.html index 05371746..a5005387 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/channels.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/channels.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                              - -
                                                                                                              +
                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                              PaymentChannelsSuccess class
                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/toJson.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/toJson.html index 8590d09f..f38efc5f 100644 --- a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/toJson.html +++ b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                              - -
                                                                                                              +
                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                              PaymentChannelsSuccess class
                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                              diff --git a/doc/model_result_payment_channels_result/index.html b/doc/model_result_payment_channels_result/index.html index 58bb6fbc..eb991908 100644 --- a/doc/model_result_payment_channels_result/index.html +++ b/doc/model_result_payment_channels_result/index.html @@ -31,17 +31,14 @@ -
                                                                                                              - -
                                                                                                              +
                                                                                                              Classes
                                                                                                              flutter_tpay package
                                                                                                              1. Libraries
                                                                                                              2. -
                                                                                                              3. model/apple_pay_configuration
                                                                                                              4. -
                                                                                                              5. model/certificate_pinning_configuration
                                                                                                              6. -
                                                                                                              7. model/google_pay_configuration
                                                                                                              8. -
                                                                                                              9. model/language/language
                                                                                                              10. -
                                                                                                              11. model/language/languages
                                                                                                              12. -
                                                                                                              13. model/language/localized_string
                                                                                                              14. -
                                                                                                              15. model/merchant/merchant
                                                                                                              16. -
                                                                                                              17. model/merchant/merchant_authorization
                                                                                                              18. -
                                                                                                              19. model/merchant/merchant_details
                                                                                                              20. -
                                                                                                              21. model/payer/payer
                                                                                                              22. -
                                                                                                              23. model/payer/payer_address
                                                                                                              24. -
                                                                                                              25. model/payer/payer_context
                                                                                                              26. -
                                                                                                              27. model/paymentChannel/payment_channel
                                                                                                              28. -
                                                                                                              29. model/paymentChannel/payment_constraint
                                                                                                              30. -
                                                                                                              31. model/paymentChannel/payment_group
                                                                                                              32. -
                                                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                                                              34. -
                                                                                                              35. model/paymentMethod/blik_alias
                                                                                                              36. -
                                                                                                              37. model/paymentMethod/credit_card_brand
                                                                                                              38. -
                                                                                                              39. model/paymentMethod/digital_wallet
                                                                                                              40. -
                                                                                                              41. model/paymentMethod/installment_payment
                                                                                                              42. -
                                                                                                              43. model/paymentMethod/payment_method
                                                                                                              44. -
                                                                                                              45. model/paymentMethod/payment_methods
                                                                                                              46. -
                                                                                                              47. model/paymentMethod/tokenized_card
                                                                                                              48. -
                                                                                                              49. model/result/google_pay_configure_result
                                                                                                              50. -
                                                                                                              51. model/result/google_pay_open_result
                                                                                                              52. -
                                                                                                              53. model/result/payment_channels_result
                                                                                                              54. -
                                                                                                              55. model/result/result
                                                                                                              56. -
                                                                                                              57. model/result/screenless_result
                                                                                                              58. -
                                                                                                              59. model/screenless/ambiguous_alias
                                                                                                              60. -
                                                                                                              61. model/screenless/ambiguous_blik_payment
                                                                                                              62. -
                                                                                                              63. model/screenless/apple_pay_payment
                                                                                                              64. -
                                                                                                              65. model/screenless/blik_payment
                                                                                                              66. -
                                                                                                              67. model/screenless/callbacks
                                                                                                              68. -
                                                                                                              69. model/screenless/credit_card
                                                                                                              70. -
                                                                                                              71. model/screenless/credit_card_config
                                                                                                              72. -
                                                                                                              73. model/screenless/credit_card_payment
                                                                                                              74. -
                                                                                                              75. model/screenless/expiration_date
                                                                                                              76. -
                                                                                                              77. model/screenless/google_pay_environment
                                                                                                              78. -
                                                                                                              79. model/screenless/google_pay_payment
                                                                                                              80. -
                                                                                                              81. model/screenless/google_pay_utils_configuration
                                                                                                              82. -
                                                                                                              83. model/screenless/notifications
                                                                                                              84. -
                                                                                                              85. model/screenless/pay_po_payment
                                                                                                              86. -
                                                                                                              87. model/screenless/payment_details
                                                                                                              88. -
                                                                                                              89. model/screenless/raty_pekao_payment
                                                                                                              90. -
                                                                                                              91. model/screenless/recursive
                                                                                                              92. -
                                                                                                              93. model/screenless/redirects
                                                                                                              94. -
                                                                                                              95. model/screenless/screenless_payment
                                                                                                              96. -
                                                                                                              97. model/screenless/transfer_method
                                                                                                              98. -
                                                                                                              99. model/screenless/transfer_payment
                                                                                                              100. -
                                                                                                              101. model/tokenization/tokenization
                                                                                                              102. -
                                                                                                              103. model/tpay_configuration
                                                                                                              104. -
                                                                                                              105. model/tpay_environment
                                                                                                              106. -
                                                                                                              107. model/transaction/single_transaction
                                                                                                              108. -
                                                                                                              109. model/transaction/token_payment
                                                                                                              110. -
                                                                                                              111. model/transaction/transaction
                                                                                                              112. -
                                                                                                              113. model/wallet_configuration
                                                                                                              114. -
                                                                                                              115. tpay_button
                                                                                                              116. -
                                                                                                              117. tpay_method_channel
                                                                                                              118. -
                                                                                                              119. tpay_platform_interface
                                                                                                              120. -
                                                                                                              121. util/google_pay_configuration_util
                                                                                                              122. -
                                                                                                              123. util/google_pay_util
                                                                                                              124. -
                                                                                                              125. util/payment_channels_util
                                                                                                              126. -
                                                                                                              127. util/result_util
                                                                                                              128. -
                                                                                                              129. util/screenless_result_util
                                                                                                              130. +
                                                                                                              131. model/apple_pay_configuration
                                                                                                              132. +
                                                                                                              133. model/certificate_pinning_configuration
                                                                                                              134. +
                                                                                                              135. model/google_pay_configuration
                                                                                                              136. +
                                                                                                              137. model/language/language
                                                                                                              138. +
                                                                                                              139. model/language/languages
                                                                                                              140. +
                                                                                                              141. model/language/localized_string
                                                                                                              142. +
                                                                                                              143. model/merchant/merchant
                                                                                                              144. +
                                                                                                              145. model/merchant/merchant_authorization
                                                                                                              146. +
                                                                                                              147. model/merchant/merchant_details
                                                                                                              148. +
                                                                                                              149. model/payer/payer
                                                                                                              150. +
                                                                                                              151. model/payer/payer_address
                                                                                                              152. +
                                                                                                              153. model/payer/payer_context
                                                                                                              154. +
                                                                                                              155. model/paymentChannel/payment_channel
                                                                                                              156. +
                                                                                                              157. model/paymentChannel/payment_constraint
                                                                                                              158. +
                                                                                                              159. model/paymentChannel/payment_group
                                                                                                              160. +
                                                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                                                              162. +
                                                                                                              163. model/paymentMethod/blik_alias
                                                                                                              164. +
                                                                                                              165. model/paymentMethod/credit_card_brand
                                                                                                              166. +
                                                                                                              167. model/paymentMethod/digital_wallet
                                                                                                              168. +
                                                                                                              169. model/paymentMethod/installment_payment
                                                                                                              170. +
                                                                                                              171. model/paymentMethod/payment_method
                                                                                                              172. +
                                                                                                              173. model/paymentMethod/payment_methods
                                                                                                              174. +
                                                                                                              175. model/paymentMethod/tokenized_card
                                                                                                              176. +
                                                                                                              177. model/result/google_pay_configure_result
                                                                                                              178. +
                                                                                                              179. model/result/google_pay_open_result
                                                                                                              180. +
                                                                                                              181. model/result/payment_channels_result
                                                                                                              182. +
                                                                                                              183. model/result/result
                                                                                                              184. +
                                                                                                              185. model/result/screenless_result
                                                                                                              186. +
                                                                                                              187. model/screenless/ambiguous_alias
                                                                                                              188. +
                                                                                                              189. model/screenless/ambiguous_blik_payment
                                                                                                              190. +
                                                                                                              191. model/screenless/apple_pay_payment
                                                                                                              192. +
                                                                                                              193. model/screenless/blik_payment
                                                                                                              194. +
                                                                                                              195. model/screenless/callbacks
                                                                                                              196. +
                                                                                                              197. model/screenless/credit_card
                                                                                                              198. +
                                                                                                              199. model/screenless/credit_card_config
                                                                                                              200. +
                                                                                                              201. model/screenless/credit_card_payment
                                                                                                              202. +
                                                                                                              203. model/screenless/expiration_date
                                                                                                              204. +
                                                                                                              205. model/screenless/google_pay_environment
                                                                                                              206. +
                                                                                                              207. model/screenless/google_pay_payment
                                                                                                              208. +
                                                                                                              209. model/screenless/google_pay_utils_configuration
                                                                                                              210. +
                                                                                                              211. model/screenless/notifications
                                                                                                              212. +
                                                                                                              213. model/screenless/pay_po_payment
                                                                                                              214. +
                                                                                                              215. model/screenless/payment_details
                                                                                                              216. +
                                                                                                              217. model/screenless/raty_pekao_payment
                                                                                                              218. +
                                                                                                              219. model/screenless/recursive
                                                                                                              220. +
                                                                                                              221. model/screenless/redirects
                                                                                                              222. +
                                                                                                              223. model/screenless/screenless_payment
                                                                                                              224. +
                                                                                                              225. model/screenless/transfer_method
                                                                                                              226. +
                                                                                                              227. model/screenless/transfer_payment
                                                                                                              228. +
                                                                                                              229. model/tokenization/tokenization
                                                                                                              230. +
                                                                                                              231. model/tpay_configuration
                                                                                                              232. +
                                                                                                              233. model/tpay_environment
                                                                                                              234. +
                                                                                                              235. model/transaction/single_transaction
                                                                                                              236. +
                                                                                                              237. model/transaction/token_payment
                                                                                                              238. +
                                                                                                              239. model/transaction/transaction
                                                                                                              240. +
                                                                                                              241. model/wallet_configuration
                                                                                                              242. +
                                                                                                              243. tpay_button
                                                                                                              244. +
                                                                                                              245. tpay_method_channel
                                                                                                              246. +
                                                                                                              247. tpay_platform_interface
                                                                                                              248. +
                                                                                                              249. util/google_pay_configuration_util
                                                                                                              250. +
                                                                                                              251. util/google_pay_util
                                                                                                              252. +
                                                                                                              253. util/payment_channels_util
                                                                                                              254. +
                                                                                                              255. util/result_util
                                                                                                              256. +
                                                                                                              257. util/screenless_result_util
                                                                                                              @@ -192,7 +189,7 @@
                                                                                                              payment_channels_result library
                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                              diff --git a/doc/model_result_payment_channels_result/model_result_payment_channels_result-library-sidebar.html b/doc/model_result_payment_channels_result/model_result_payment_channels_result-library-sidebar.html index bc13d8ee..6bdbf4b2 100644 --- a/doc/model_result_payment_channels_result/model_result_payment_channels_result-library-sidebar.html +++ b/doc/model_result_payment_channels_result/model_result_payment_channels_result-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                -
                                                                                                              1. Classes
                                                                                                              2. +
                                                                                                              3. Classes
                                                                                                              4. PaymentChannelsError
                                                                                                              5. PaymentChannelsResult
                                                                                                              6. PaymentChannelsSuccess
                                                                                                              7. diff --git a/doc/model_result_payment_channels_result/model_result_payment_channels_result-library.html b/doc/model_result_payment_channels_result/model_result_payment_channels_result-library.html index 14431486..c02bbf12 100644 --- a/doc/model_result_payment_channels_result/model_result_payment_channels_result-library.html +++ b/doc/model_result_payment_channels_result/model_result_payment_channels_result-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                New URL

                                                                                                                +

                                                                                                                New URL

                                                                                                                \ No newline at end of file diff --git a/doc/model_result_result/ConfigurationSuccess-class-sidebar.html b/doc/model_result_result/ConfigurationSuccess-class-sidebar.html index 32d58136..48b92995 100644 --- a/doc/model_result_result/ConfigurationSuccess-class-sidebar.html +++ b/doc/model_result_result/ConfigurationSuccess-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                1. Constructors
                                                                                                                2. -
                                                                                                                3. ConfigurationSuccess
                                                                                                                4. +
                                                                                                                5. new
                                                                                                                6. diff --git a/doc/model_result_result/ConfigurationSuccess-class.html b/doc/model_result_result/ConfigurationSuccess-class.html index 00c1d18b..ef6d71d9 100644 --- a/doc/model_result_result/ConfigurationSuccess-class.html +++ b/doc/model_result_result/ConfigurationSuccess-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                  ConfigurationSuccess
                                                                                                                  -
                                                                                                                  - -
                                                                                                                  +
                                                                                                                  ConfigurationSuccess class

                                                                                                                  Constructors

                                                                                                                  -
                                                                                                                  +
                                                                                                                  ConfigurationSuccess()
                                                                                                                  @@ -198,7 +195,7 @@

                                                                                                                  Operators

                                                                                                                  @@ -211,7 +208,7 @@
                                                                                                                  result library
                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                  diff --git a/doc/model_result_result/ConfigurationSuccess/ConfigurationSuccess.html b/doc/model_result_result/ConfigurationSuccess/ConfigurationSuccess.html index a9521b96..825e26d0 100644 --- a/doc/model_result_result/ConfigurationSuccess/ConfigurationSuccess.html +++ b/doc/model_result_result/ConfigurationSuccess/ConfigurationSuccess.html @@ -4,8 +4,8 @@ - - ConfigurationSuccess constructor - ConfigurationSuccess - result library - Dart API + + ConfigurationSuccess.new constructor - ConfigurationSuccess - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                  ConfigurationSuccess
                                                                                                                  +
                                                                                                                  ConfigurationSuccess.new
                                                                                                                  -
                                                                                                                  - -
                                                                                                                  +
                                                                                                                  ConfigurationSuccess constructor
                                                                                                                  ConfigurationSuccess class
                                                                                                                  @@ -89,7 +86,7 @@
                                                                                                                  ConfigurationSuccess class
                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                  diff --git a/doc/model_result_result/MethodCallError-class-sidebar.html b/doc/model_result_result/MethodCallError-class-sidebar.html index e04620e7..4414f537 100644 --- a/doc/model_result_result/MethodCallError-class-sidebar.html +++ b/doc/model_result_result/MethodCallError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                  1. Constructors
                                                                                                                  2. -
                                                                                                                  3. MethodCallError
                                                                                                                  4. +
                                                                                                                  5. new
                                                                                                                  6. diff --git a/doc/model_result_result/MethodCallError-class.html b/doc/model_result_result/MethodCallError-class.html index 2690b979..57398b2c 100644 --- a/doc/model_result_result/MethodCallError-class.html +++ b/doc/model_result_result/MethodCallError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                    MethodCallError
                                                                                                                    -
                                                                                                                    - -
                                                                                                                    +
                                                                                                                    MethodCallError class

                                                                                                                    Constructors

                                                                                                                    -
                                                                                                                    +
                                                                                                                    MethodCallError(String message)
                                                                                                                    @@ -210,7 +207,7 @@

                                                                                                                    Operators

                                                                                                                    @@ -223,7 +220,7 @@
                                                                                                                    result library
                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                    diff --git a/doc/model_result_result/MethodCallError/MethodCallError.html b/doc/model_result_result/MethodCallError/MethodCallError.html index c1c62fe2..68181695 100644 --- a/doc/model_result_result/MethodCallError/MethodCallError.html +++ b/doc/model_result_result/MethodCallError/MethodCallError.html @@ -4,8 +4,8 @@ - - MethodCallError constructor - MethodCallError - result library - Dart API + + MethodCallError.new constructor - MethodCallError - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                    MethodCallError
                                                                                                                    +
                                                                                                                    MethodCallError.new
                                                                                                                    -
                                                                                                                    - -
                                                                                                                    +
                                                                                                                    Implementation
                                                                                                                    MethodCallError class
                                                                                                                    @@ -94,7 +91,7 @@
                                                                                                                    MethodCallError class
                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                    diff --git a/doc/model_result_result/MethodCallError/message.html b/doc/model_result_result/MethodCallError/message.html index c5186fb3..a21f8e7c 100644 --- a/doc/model_result_result/MethodCallError/message.html +++ b/doc/model_result_result/MethodCallError/message.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                    - -
                                                                                                                    +
                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                    MethodCallError class
                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                    diff --git a/doc/model_result_result/ModuleClosed-class-sidebar.html b/doc/model_result_result/ModuleClosed-class-sidebar.html index efe46c89..c306328d 100644 --- a/doc/model_result_result/ModuleClosed-class-sidebar.html +++ b/doc/model_result_result/ModuleClosed-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                    1. Constructors
                                                                                                                    2. -
                                                                                                                    3. ModuleClosed
                                                                                                                    4. +
                                                                                                                    5. new
                                                                                                                    6. diff --git a/doc/model_result_result/ModuleClosed-class.html b/doc/model_result_result/ModuleClosed-class.html index 9be5af9d..8c0f3aa7 100644 --- a/doc/model_result_result/ModuleClosed-class.html +++ b/doc/model_result_result/ModuleClosed-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                      ModuleClosed
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      ModuleClosed class

                                                                                                                      Constructors

                                                                                                                      -
                                                                                                                      +
                                                                                                                      ModuleClosed()
                                                                                                                      @@ -199,7 +196,7 @@

                                                                                                                      Operators

                                                                                                                      @@ -212,7 +209,7 @@
                                                                                                                      result library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/model_result_result/ModuleClosed/ModuleClosed.html b/doc/model_result_result/ModuleClosed/ModuleClosed.html index 81ee610b..097a5213 100644 --- a/doc/model_result_result/ModuleClosed/ModuleClosed.html +++ b/doc/model_result_result/ModuleClosed/ModuleClosed.html @@ -4,8 +4,8 @@ - - ModuleClosed constructor - ModuleClosed - result library - Dart API + + ModuleClosed.new constructor - ModuleClosed - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                      ModuleClosed
                                                                                                                      +
                                                                                                                      ModuleClosed.new
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      ModuleClosed constructor
                                                                                                                      ModuleClosed class
                                                                                                                      @@ -89,7 +86,7 @@
                                                                                                                      ModuleClosed class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/model_result_result/PaymentCancelled-class-sidebar.html b/doc/model_result_result/PaymentCancelled-class-sidebar.html index 39fdd49c..8e00d821 100644 --- a/doc/model_result_result/PaymentCancelled-class-sidebar.html +++ b/doc/model_result_result/PaymentCancelled-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                      1. Constructors
                                                                                                                      2. -
                                                                                                                      3. PaymentCancelled
                                                                                                                      4. +
                                                                                                                      5. new
                                                                                                                      6. diff --git a/doc/model_result_result/PaymentCancelled-class.html b/doc/model_result_result/PaymentCancelled-class.html index 1cf859fb..89453809 100644 --- a/doc/model_result_result/PaymentCancelled-class.html +++ b/doc/model_result_result/PaymentCancelled-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                        PaymentCancelled
                                                                                                                        -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        PaymentCancelled class

                                                                                                                        Constructors

                                                                                                                        -
                                                                                                                        +
                                                                                                                        PaymentCancelled(String? transactionId)
                                                                                                                        @@ -211,7 +208,7 @@

                                                                                                                        Operators

                                                                                                                        @@ -224,7 +221,7 @@
                                                                                                                        result library
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_result_result/PaymentCancelled/PaymentCancelled.html b/doc/model_result_result/PaymentCancelled/PaymentCancelled.html index 330833a5..6717a1c6 100644 --- a/doc/model_result_result/PaymentCancelled/PaymentCancelled.html +++ b/doc/model_result_result/PaymentCancelled/PaymentCancelled.html @@ -4,8 +4,8 @@ - - PaymentCancelled constructor - PaymentCancelled - result library - Dart API + + PaymentCancelled.new constructor - PaymentCancelled - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                        PaymentCancelled
                                                                                                                        +
                                                                                                                        PaymentCancelled.new
                                                                                                                        -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        Implementation
                                                                                                                        PaymentCancelled class
                                                                                                                        @@ -94,7 +91,7 @@
                                                                                                                        PaymentCancelled class
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_result_result/PaymentCancelled/transactionId.html b/doc/model_result_result/PaymentCancelled/transactionId.html index 6c28a6a0..890e44cd 100644 --- a/doc/model_result_result/PaymentCancelled/transactionId.html +++ b/doc/model_result_result/PaymentCancelled/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                        PaymentCancelled class
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_result_result/PaymentCompleted-class-sidebar.html b/doc/model_result_result/PaymentCompleted-class-sidebar.html index 67862fac..13ec7d16 100644 --- a/doc/model_result_result/PaymentCompleted-class-sidebar.html +++ b/doc/model_result_result/PaymentCompleted-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                        1. Constructors
                                                                                                                        2. -
                                                                                                                        3. PaymentCompleted
                                                                                                                        4. +
                                                                                                                        5. new
                                                                                                                        6. diff --git a/doc/model_result_result/PaymentCompleted-class.html b/doc/model_result_result/PaymentCompleted-class.html index 90824da8..03b08247 100644 --- a/doc/model_result_result/PaymentCompleted-class.html +++ b/doc/model_result_result/PaymentCompleted-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                          PaymentCompleted
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          PaymentCompleted class

                                                                                                                          Constructors

                                                                                                                          -
                                                                                                                          +
                                                                                                                          PaymentCompleted(String? transactionId)
                                                                                                                          @@ -211,7 +208,7 @@

                                                                                                                          Operators

                                                                                                                          @@ -224,7 +221,7 @@
                                                                                                                          result library
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/model_result_result/PaymentCompleted/PaymentCompleted.html b/doc/model_result_result/PaymentCompleted/PaymentCompleted.html index d6a0bd77..5524c50c 100644 --- a/doc/model_result_result/PaymentCompleted/PaymentCompleted.html +++ b/doc/model_result_result/PaymentCompleted/PaymentCompleted.html @@ -4,8 +4,8 @@ - - PaymentCompleted constructor - PaymentCompleted - result library - Dart API + + PaymentCompleted.new constructor - PaymentCompleted - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                          PaymentCompleted
                                                                                                                          +
                                                                                                                          PaymentCompleted.new
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation
                                                                                                                          PaymentCompleted class
                                                                                                                          @@ -94,7 +91,7 @@
                                                                                                                          PaymentCompleted class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/model_result_result/PaymentCompleted/transactionId.html b/doc/model_result_result/PaymentCompleted/transactionId.html index 4f6e22d5..a67f0f29 100644 --- a/doc/model_result_result/PaymentCompleted/transactionId.html +++ b/doc/model_result_result/PaymentCompleted/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                          PaymentCompleted class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/model_result_result/PaymentCreated-class-sidebar.html b/doc/model_result_result/PaymentCreated-class-sidebar.html index d760167e..347513e9 100644 --- a/doc/model_result_result/PaymentCreated-class-sidebar.html +++ b/doc/model_result_result/PaymentCreated-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                          1. Constructors
                                                                                                                          2. -
                                                                                                                          3. PaymentCreated
                                                                                                                          4. +
                                                                                                                          5. new
                                                                                                                          6. diff --git a/doc/model_result_result/PaymentCreated-class.html b/doc/model_result_result/PaymentCreated-class.html index cde46568..c27dc065 100644 --- a/doc/model_result_result/PaymentCreated-class.html +++ b/doc/model_result_result/PaymentCreated-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                            PaymentCreated
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            PaymentCreated class

                                                                                                                            Constructors

                                                                                                                            -
                                                                                                                            +
                                                                                                                            PaymentCreated(String? transactionId)
                                                                                                                            @@ -210,7 +207,7 @@

                                                                                                                            Operators

                                                                                                                            @@ -223,7 +220,7 @@
                                                                                                                            result library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_result_result/PaymentCreated/PaymentCreated.html b/doc/model_result_result/PaymentCreated/PaymentCreated.html index f8c99185..8154c1f3 100644 --- a/doc/model_result_result/PaymentCreated/PaymentCreated.html +++ b/doc/model_result_result/PaymentCreated/PaymentCreated.html @@ -4,8 +4,8 @@ - - PaymentCreated constructor - PaymentCreated - result library - Dart API + + PaymentCreated.new constructor - PaymentCreated - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                            PaymentCreated
                                                                                                                            +
                                                                                                                            PaymentCreated.new
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation
                                                                                                                            PaymentCreated class
                                                                                                                            @@ -94,7 +91,7 @@
                                                                                                                            PaymentCreated class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_result_result/PaymentCreated/transactionId.html b/doc/model_result_result/PaymentCreated/transactionId.html index 525ba1be..74723b4d 100644 --- a/doc/model_result_result/PaymentCreated/transactionId.html +++ b/doc/model_result_result/PaymentCreated/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                            PaymentCreated class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_result_result/Result-class-sidebar.html b/doc/model_result_result/Result-class-sidebar.html index 6c27885d..c630dcc7 100644 --- a/doc/model_result_result/Result-class-sidebar.html +++ b/doc/model_result_result/Result-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                            1. Constructors
                                                                                                                            2. -
                                                                                                                            3. Result
                                                                                                                            4. +
                                                                                                                            5. new
                                                                                                                            6. diff --git a/doc/model_result_result/Result-class.html b/doc/model_result_result/Result-class.html index 72923328..ba66acf3 100644 --- a/doc/model_result_result/Result-class.html +++ b/doc/model_result_result/Result-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                              Result
                                                                                                                              -
                                                                                                                              - -
                                                                                                                              +
                                                                                                                              Result class

                                                                                                                              Constructors

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Result()
                                                                                                                              @@ -203,7 +200,7 @@

                                                                                                                              Operators

                                                                                                                              @@ -216,7 +213,7 @@
                                                                                                                              result library
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                              diff --git a/doc/model_result_result/Result/Result.html b/doc/model_result_result/Result/Result.html index c0fe3633..d88a3911 100644 --- a/doc/model_result_result/Result/Result.html +++ b/doc/model_result_result/Result/Result.html @@ -4,8 +4,8 @@ - - Result constructor - Result - result library - Dart API + + Result.new constructor - Result - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                              Result
                                                                                                                              +
                                                                                                                              Result.new
                                                                                                                              -
                                                                                                                              - -
                                                                                                                              +
                                                                                                                              Result constructor
                                                                                                                              Result class
                                                                                                                              @@ -89,7 +86,7 @@
                                                                                                                              Result class
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                              diff --git a/doc/model_result_result/TokenizationCompleted-class-sidebar.html b/doc/model_result_result/TokenizationCompleted-class-sidebar.html index 14ebd1c6..5439e351 100644 --- a/doc/model_result_result/TokenizationCompleted-class-sidebar.html +++ b/doc/model_result_result/TokenizationCompleted-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                              1. Constructors
                                                                                                                              2. -
                                                                                                                              3. TokenizationCompleted
                                                                                                                              4. +
                                                                                                                              5. new
                                                                                                                              6. diff --git a/doc/model_result_result/TokenizationCompleted-class.html b/doc/model_result_result/TokenizationCompleted-class.html index 1585ff7e..ec941001 100644 --- a/doc/model_result_result/TokenizationCompleted-class.html +++ b/doc/model_result_result/TokenizationCompleted-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                TokenizationCompleted
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                TokenizationCompleted class

                                                                                                                                Constructors

                                                                                                                                -
                                                                                                                                +
                                                                                                                                TokenizationCompleted()
                                                                                                                                @@ -199,7 +196,7 @@

                                                                                                                                Operators

                                                                                                                                @@ -212,7 +209,7 @@
                                                                                                                                result library
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                diff --git a/doc/model_result_result/TokenizationCompleted/TokenizationCompleted.html b/doc/model_result_result/TokenizationCompleted/TokenizationCompleted.html index 53ad8aff..c408790b 100644 --- a/doc/model_result_result/TokenizationCompleted/TokenizationCompleted.html +++ b/doc/model_result_result/TokenizationCompleted/TokenizationCompleted.html @@ -4,8 +4,8 @@ - - TokenizationCompleted constructor - TokenizationCompleted - result library - Dart API + + TokenizationCompleted.new constructor - TokenizationCompleted - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                TokenizationCompleted
                                                                                                                                +
                                                                                                                                TokenizationCompleted.new
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                TokenizationCompleted constructor
                                                                                                                                TokenizationCompleted class
                                                                                                                                @@ -89,7 +86,7 @@
                                                                                                                                TokenizationCompleted class
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                diff --git a/doc/model_result_result/TokenizationFailure-class-sidebar.html b/doc/model_result_result/TokenizationFailure-class-sidebar.html index 2b0cecac..6c691649 100644 --- a/doc/model_result_result/TokenizationFailure-class-sidebar.html +++ b/doc/model_result_result/TokenizationFailure-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                1. Constructors
                                                                                                                                2. -
                                                                                                                                3. TokenizationFailure
                                                                                                                                4. +
                                                                                                                                5. new
                                                                                                                                6. diff --git a/doc/model_result_result/TokenizationFailure-class.html b/doc/model_result_result/TokenizationFailure-class.html index 91401e9d..653a6bdc 100644 --- a/doc/model_result_result/TokenizationFailure-class.html +++ b/doc/model_result_result/TokenizationFailure-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                  TokenizationFailure
                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  TokenizationFailure class

                                                                                                                                  Constructors

                                                                                                                                  -
                                                                                                                                  +
                                                                                                                                  TokenizationFailure()
                                                                                                                                  @@ -199,7 +196,7 @@

                                                                                                                                  Operators

                                                                                                                                  @@ -212,7 +209,7 @@
                                                                                                                                  result library
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_result_result/TokenizationFailure/TokenizationFailure.html b/doc/model_result_result/TokenizationFailure/TokenizationFailure.html index 1df783a0..27f71fca 100644 --- a/doc/model_result_result/TokenizationFailure/TokenizationFailure.html +++ b/doc/model_result_result/TokenizationFailure/TokenizationFailure.html @@ -4,8 +4,8 @@ - - TokenizationFailure constructor - TokenizationFailure - result library - Dart API + + TokenizationFailure.new constructor - TokenizationFailure - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                  TokenizationFailure
                                                                                                                                  +
                                                                                                                                  TokenizationFailure.new
                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  TokenizationFailure constructor
                                                                                                                                  TokenizationFailure class
                                                                                                                                  @@ -89,7 +86,7 @@
                                                                                                                                  TokenizationFailure class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_result_result/ValidationError-class-sidebar.html b/doc/model_result_result/ValidationError-class-sidebar.html index 39349de2..ee841a37 100644 --- a/doc/model_result_result/ValidationError-class-sidebar.html +++ b/doc/model_result_result/ValidationError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                  1. Constructors
                                                                                                                                  2. -
                                                                                                                                  3. ValidationError
                                                                                                                                  4. +
                                                                                                                                  5. new
                                                                                                                                  6. diff --git a/doc/model_result_result/ValidationError-class.html b/doc/model_result_result/ValidationError-class.html index eb3664f0..2723862e 100644 --- a/doc/model_result_result/ValidationError-class.html +++ b/doc/model_result_result/ValidationError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                    ValidationError
                                                                                                                                    -
                                                                                                                                    - -
                                                                                                                                    +
                                                                                                                                    ValidationError class

                                                                                                                                    Constructors

                                                                                                                                    -
                                                                                                                                    +
                                                                                                                                    ValidationError(String message)
                                                                                                                                    @@ -211,7 +208,7 @@

                                                                                                                                    Operators

                                                                                                                                    @@ -224,7 +221,7 @@
                                                                                                                                    result library
                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                    diff --git a/doc/model_result_result/ValidationError/ValidationError.html b/doc/model_result_result/ValidationError/ValidationError.html index f6306eba..2bed57e8 100644 --- a/doc/model_result_result/ValidationError/ValidationError.html +++ b/doc/model_result_result/ValidationError/ValidationError.html @@ -4,8 +4,8 @@ - - ValidationError constructor - ValidationError - result library - Dart API + + ValidationError.new constructor - ValidationError - result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                    ValidationError
                                                                                                                                    +
                                                                                                                                    ValidationError.new
                                                                                                                                    -
                                                                                                                                    - -
                                                                                                                                    +
                                                                                                                                    Implementation
                                                                                                                                    ValidationError class
                                                                                                                                    @@ -94,7 +91,7 @@
                                                                                                                                    ValidationError class
                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                    diff --git a/doc/model_result_result/ValidationError/message.html b/doc/model_result_result/ValidationError/message.html index e9019f06..0f9b5e9c 100644 --- a/doc/model_result_result/ValidationError/message.html +++ b/doc/model_result_result/ValidationError/message.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                    - -
                                                                                                                                    +
                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                    ValidationError class
                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                    diff --git a/doc/model_result_result/index.html b/doc/model_result_result/index.html index 419b5fcd..c69bd68c 100644 --- a/doc/model_result_result/index.html +++ b/doc/model_result_result/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                    - -
                                                                                                                                    +
                                                                                                                                    Classes
                                                                                                                                    flutter_tpay package
                                                                                                                                    1. Libraries
                                                                                                                                    2. -
                                                                                                                                    3. model/apple_pay_configuration
                                                                                                                                    4. -
                                                                                                                                    5. model/certificate_pinning_configuration
                                                                                                                                    6. -
                                                                                                                                    7. model/google_pay_configuration
                                                                                                                                    8. -
                                                                                                                                    9. model/language/language
                                                                                                                                    10. -
                                                                                                                                    11. model/language/languages
                                                                                                                                    12. -
                                                                                                                                    13. model/language/localized_string
                                                                                                                                    14. -
                                                                                                                                    15. model/merchant/merchant
                                                                                                                                    16. -
                                                                                                                                    17. model/merchant/merchant_authorization
                                                                                                                                    18. -
                                                                                                                                    19. model/merchant/merchant_details
                                                                                                                                    20. -
                                                                                                                                    21. model/payer/payer
                                                                                                                                    22. -
                                                                                                                                    23. model/payer/payer_address
                                                                                                                                    24. -
                                                                                                                                    25. model/payer/payer_context
                                                                                                                                    26. -
                                                                                                                                    27. model/paymentChannel/payment_channel
                                                                                                                                    28. -
                                                                                                                                    29. model/paymentChannel/payment_constraint
                                                                                                                                    30. -
                                                                                                                                    31. model/paymentChannel/payment_group
                                                                                                                                    32. -
                                                                                                                                    33. model/paymentMethod/automatic_payment_methods
                                                                                                                                    34. -
                                                                                                                                    35. model/paymentMethod/blik_alias
                                                                                                                                    36. -
                                                                                                                                    37. model/paymentMethod/credit_card_brand
                                                                                                                                    38. -
                                                                                                                                    39. model/paymentMethod/digital_wallet
                                                                                                                                    40. -
                                                                                                                                    41. model/paymentMethod/installment_payment
                                                                                                                                    42. -
                                                                                                                                    43. model/paymentMethod/payment_method
                                                                                                                                    44. -
                                                                                                                                    45. model/paymentMethod/payment_methods
                                                                                                                                    46. -
                                                                                                                                    47. model/paymentMethod/tokenized_card
                                                                                                                                    48. -
                                                                                                                                    49. model/result/google_pay_configure_result
                                                                                                                                    50. -
                                                                                                                                    51. model/result/google_pay_open_result
                                                                                                                                    52. -
                                                                                                                                    53. model/result/payment_channels_result
                                                                                                                                    54. -
                                                                                                                                    55. model/result/result
                                                                                                                                    56. -
                                                                                                                                    57. model/result/screenless_result
                                                                                                                                    58. -
                                                                                                                                    59. model/screenless/ambiguous_alias
                                                                                                                                    60. -
                                                                                                                                    61. model/screenless/ambiguous_blik_payment
                                                                                                                                    62. -
                                                                                                                                    63. model/screenless/apple_pay_payment
                                                                                                                                    64. -
                                                                                                                                    65. model/screenless/blik_payment
                                                                                                                                    66. -
                                                                                                                                    67. model/screenless/callbacks
                                                                                                                                    68. -
                                                                                                                                    69. model/screenless/credit_card
                                                                                                                                    70. -
                                                                                                                                    71. model/screenless/credit_card_config
                                                                                                                                    72. -
                                                                                                                                    73. model/screenless/credit_card_payment
                                                                                                                                    74. -
                                                                                                                                    75. model/screenless/expiration_date
                                                                                                                                    76. -
                                                                                                                                    77. model/screenless/google_pay_environment
                                                                                                                                    78. -
                                                                                                                                    79. model/screenless/google_pay_payment
                                                                                                                                    80. -
                                                                                                                                    81. model/screenless/google_pay_utils_configuration
                                                                                                                                    82. -
                                                                                                                                    83. model/screenless/notifications
                                                                                                                                    84. -
                                                                                                                                    85. model/screenless/pay_po_payment
                                                                                                                                    86. -
                                                                                                                                    87. model/screenless/payment_details
                                                                                                                                    88. -
                                                                                                                                    89. model/screenless/raty_pekao_payment
                                                                                                                                    90. -
                                                                                                                                    91. model/screenless/recursive
                                                                                                                                    92. -
                                                                                                                                    93. model/screenless/redirects
                                                                                                                                    94. -
                                                                                                                                    95. model/screenless/screenless_payment
                                                                                                                                    96. -
                                                                                                                                    97. model/screenless/transfer_method
                                                                                                                                    98. -
                                                                                                                                    99. model/screenless/transfer_payment
                                                                                                                                    100. -
                                                                                                                                    101. model/tokenization/tokenization
                                                                                                                                    102. -
                                                                                                                                    103. model/tpay_configuration
                                                                                                                                    104. -
                                                                                                                                    105. model/tpay_environment
                                                                                                                                    106. -
                                                                                                                                    107. model/transaction/single_transaction
                                                                                                                                    108. -
                                                                                                                                    109. model/transaction/token_payment
                                                                                                                                    110. -
                                                                                                                                    111. model/transaction/transaction
                                                                                                                                    112. -
                                                                                                                                    113. model/wallet_configuration
                                                                                                                                    114. -
                                                                                                                                    115. tpay_button
                                                                                                                                    116. -
                                                                                                                                    117. tpay_method_channel
                                                                                                                                    118. -
                                                                                                                                    119. tpay_platform_interface
                                                                                                                                    120. -
                                                                                                                                    121. util/google_pay_configuration_util
                                                                                                                                    122. -
                                                                                                                                    123. util/google_pay_util
                                                                                                                                    124. -
                                                                                                                                    125. util/payment_channels_util
                                                                                                                                    126. -
                                                                                                                                    127. util/result_util
                                                                                                                                    128. -
                                                                                                                                    129. util/screenless_result_util
                                                                                                                                    130. +
                                                                                                                                    131. model/apple_pay_configuration
                                                                                                                                    132. +
                                                                                                                                    133. model/certificate_pinning_configuration
                                                                                                                                    134. +
                                                                                                                                    135. model/google_pay_configuration
                                                                                                                                    136. +
                                                                                                                                    137. model/language/language
                                                                                                                                    138. +
                                                                                                                                    139. model/language/languages
                                                                                                                                    140. +
                                                                                                                                    141. model/language/localized_string
                                                                                                                                    142. +
                                                                                                                                    143. model/merchant/merchant
                                                                                                                                    144. +
                                                                                                                                    145. model/merchant/merchant_authorization
                                                                                                                                    146. +
                                                                                                                                    147. model/merchant/merchant_details
                                                                                                                                    148. +
                                                                                                                                    149. model/payer/payer
                                                                                                                                    150. +
                                                                                                                                    151. model/payer/payer_address
                                                                                                                                    152. +
                                                                                                                                    153. model/payer/payer_context
                                                                                                                                    154. +
                                                                                                                                    155. model/paymentChannel/payment_channel
                                                                                                                                    156. +
                                                                                                                                    157. model/paymentChannel/payment_constraint
                                                                                                                                    158. +
                                                                                                                                    159. model/paymentChannel/payment_group
                                                                                                                                    160. +
                                                                                                                                    161. model/paymentMethod/automatic_payment_methods
                                                                                                                                    162. +
                                                                                                                                    163. model/paymentMethod/blik_alias
                                                                                                                                    164. +
                                                                                                                                    165. model/paymentMethod/credit_card_brand
                                                                                                                                    166. +
                                                                                                                                    167. model/paymentMethod/digital_wallet
                                                                                                                                    168. +
                                                                                                                                    169. model/paymentMethod/installment_payment
                                                                                                                                    170. +
                                                                                                                                    171. model/paymentMethod/payment_method
                                                                                                                                    172. +
                                                                                                                                    173. model/paymentMethod/payment_methods
                                                                                                                                    174. +
                                                                                                                                    175. model/paymentMethod/tokenized_card
                                                                                                                                    176. +
                                                                                                                                    177. model/result/google_pay_configure_result
                                                                                                                                    178. +
                                                                                                                                    179. model/result/google_pay_open_result
                                                                                                                                    180. +
                                                                                                                                    181. model/result/payment_channels_result
                                                                                                                                    182. +
                                                                                                                                    183. model/result/result
                                                                                                                                    184. +
                                                                                                                                    185. model/result/screenless_result
                                                                                                                                    186. +
                                                                                                                                    187. model/screenless/ambiguous_alias
                                                                                                                                    188. +
                                                                                                                                    189. model/screenless/ambiguous_blik_payment
                                                                                                                                    190. +
                                                                                                                                    191. model/screenless/apple_pay_payment
                                                                                                                                    192. +
                                                                                                                                    193. model/screenless/blik_payment
                                                                                                                                    194. +
                                                                                                                                    195. model/screenless/callbacks
                                                                                                                                    196. +
                                                                                                                                    197. model/screenless/credit_card
                                                                                                                                    198. +
                                                                                                                                    199. model/screenless/credit_card_config
                                                                                                                                    200. +
                                                                                                                                    201. model/screenless/credit_card_payment
                                                                                                                                    202. +
                                                                                                                                    203. model/screenless/expiration_date
                                                                                                                                    204. +
                                                                                                                                    205. model/screenless/google_pay_environment
                                                                                                                                    206. +
                                                                                                                                    207. model/screenless/google_pay_payment
                                                                                                                                    208. +
                                                                                                                                    209. model/screenless/google_pay_utils_configuration
                                                                                                                                    210. +
                                                                                                                                    211. model/screenless/notifications
                                                                                                                                    212. +
                                                                                                                                    213. model/screenless/pay_po_payment
                                                                                                                                    214. +
                                                                                                                                    215. model/screenless/payment_details
                                                                                                                                    216. +
                                                                                                                                    217. model/screenless/raty_pekao_payment
                                                                                                                                    218. +
                                                                                                                                    219. model/screenless/recursive
                                                                                                                                    220. +
                                                                                                                                    221. model/screenless/redirects
                                                                                                                                    222. +
                                                                                                                                    223. model/screenless/screenless_payment
                                                                                                                                    224. +
                                                                                                                                    225. model/screenless/transfer_method
                                                                                                                                    226. +
                                                                                                                                    227. model/screenless/transfer_payment
                                                                                                                                    228. +
                                                                                                                                    229. model/tokenization/tokenization
                                                                                                                                    230. +
                                                                                                                                    231. model/tpay_configuration
                                                                                                                                    232. +
                                                                                                                                    233. model/tpay_environment
                                                                                                                                    234. +
                                                                                                                                    235. model/transaction/single_transaction
                                                                                                                                    236. +
                                                                                                                                    237. model/transaction/token_payment
                                                                                                                                    238. +
                                                                                                                                    239. model/transaction/transaction
                                                                                                                                    240. +
                                                                                                                                    241. model/wallet_configuration
                                                                                                                                    242. +
                                                                                                                                    243. tpay_button
                                                                                                                                    244. +
                                                                                                                                    245. tpay_method_channel
                                                                                                                                    246. +
                                                                                                                                    247. tpay_platform_interface
                                                                                                                                    248. +
                                                                                                                                    249. util/google_pay_configuration_util
                                                                                                                                    250. +
                                                                                                                                    251. util/google_pay_util
                                                                                                                                    252. +
                                                                                                                                    253. util/payment_channels_util
                                                                                                                                    254. +
                                                                                                                                    255. util/result_util
                                                                                                                                    256. +
                                                                                                                                    257. util/screenless_result_util
                                                                                                                                    @@ -254,7 +251,7 @@
                                                                                                                                    result library
                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                    diff --git a/doc/model_result_result/model_result_result-library-sidebar.html b/doc/model_result_result/model_result_result-library-sidebar.html index fad783cc..9301a744 100644 --- a/doc/model_result_result/model_result_result-library-sidebar.html +++ b/doc/model_result_result/model_result_result-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                      -
                                                                                                                                    1. Classes
                                                                                                                                    2. +
                                                                                                                                    3. Classes
                                                                                                                                    4. ConfigurationSuccess
                                                                                                                                    5. MethodCallError
                                                                                                                                    6. ModuleClosed
                                                                                                                                    7. diff --git a/doc/model_result_result/model_result_result-library.html b/doc/model_result_result/model_result_result-library.html index 09006764..894eb651 100644 --- a/doc/model_result_result/model_result_result-library.html +++ b/doc/model_result_result/model_result_result-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                      New URL

                                                                                                                                      +

                                                                                                                                      New URL

                                                                                                                                      \ No newline at end of file diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class-sidebar.html index 491ada7a..8096c3f6 100644 --- a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                      1. Constructors
                                                                                                                                      2. -
                                                                                                                                      3. ScreenlessBlikAmbiguousAlias
                                                                                                                                      4. +
                                                                                                                                      5. new
                                                                                                                                      6. diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class.html index be9ba9e4..7bbd55b2 100644 --- a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class.html +++ b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                        ScreenlessBlikAmbiguousAlias
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        ScreenlessBlikAmbiguousAlias class

                                                                                                                                        Constructors

                                                                                                                                        -
                                                                                                                                        +
                                                                                                                                        ScreenlessBlikAmbiguousAlias({required String transactionId, required List<AmbiguousAlias> aliases})
                                                                                                                                        @@ -219,7 +216,7 @@

                                                                                                                                        Operators

                                                                                                                                        @@ -232,7 +229,7 @@
                                                                                                                                        screenless_result library
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/ScreenlessBlikAmbiguousAlias.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/ScreenlessBlikAmbiguousAlias.html index 046f7b44..d3797e30 100644 --- a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/ScreenlessBlikAmbiguousAlias.html +++ b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/ScreenlessBlikAmbiguousAlias.html @@ -4,8 +4,8 @@ - - ScreenlessBlikAmbiguousAlias constructor - ScreenlessBlikAmbiguousAlias - screenless_result library - Dart API + + ScreenlessBlikAmbiguousAlias.new constructor - ScreenlessBlikAmbiguousAlias - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                        ScreenlessBlikAmbiguousAlias
                                                                                                                                        +
                                                                                                                                        ScreenlessBlikAmbiguousAlias.new
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Implementation
                                                                                                                                        ScreenlessBlikAmbiguousAlias class
                                                                                                                                        @@ -98,7 +95,7 @@
                                                                                                                                        ScreenlessBlikAmbiguousAlias class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/aliases.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/aliases.html index 1f92ecdf..50a760a9 100644 --- a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/aliases.html +++ b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/aliases.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                        ScreenlessBlikAmbiguousAlias class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/transactionId.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/transactionId.html index ffdfad38..60a40678 100644 --- a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/transactionId.html +++ b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                        ScreenlessBlikAmbiguousAlias class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class-sidebar.html index 9fd36c47..748e9b3a 100644 --- a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                        1. Constructors
                                                                                                                                        2. -
                                                                                                                                        3. ScreenlessConfiguredPaymentFailed
                                                                                                                                        4. +
                                                                                                                                        5. new
                                                                                                                                        6. diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class.html index 0e53557a..7c15e274 100644 --- a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class.html +++ b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                          ScreenlessConfiguredPaymentFailed
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          ScreenlessConfiguredPaymentFailed class

                                                                                                                                          Constructors

                                                                                                                                          -
                                                                                                                                          +
                                                                                                                                          ScreenlessConfiguredPaymentFailed({required String transactionId, String? error})
                                                                                                                                          @@ -226,7 +223,7 @@

                                                                                                                                          Operators

                                                                                                                                          @@ -239,7 +236,7 @@
                                                                                                                                          screenless_result library
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/ScreenlessConfiguredPaymentFailed.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/ScreenlessConfiguredPaymentFailed.html index c397fcbe..113dca1a 100644 --- a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/ScreenlessConfiguredPaymentFailed.html +++ b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/ScreenlessConfiguredPaymentFailed.html @@ -4,8 +4,8 @@ - - ScreenlessConfiguredPaymentFailed constructor - ScreenlessConfiguredPaymentFailed - screenless_result library - Dart API + + ScreenlessConfiguredPaymentFailed.new constructor - ScreenlessConfiguredPaymentFailed - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                          ScreenlessConfiguredPaymentFailed
                                                                                                                                          +
                                                                                                                                          ScreenlessConfiguredPaymentFailed.new
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation
                                                                                                                                          ScreenlessConfiguredPaymentFailed class
                                                                                                                                          @@ -98,7 +95,7 @@
                                                                                                                                          ScreenlessConfiguredPaymentFailed class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/error.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/error.html index db9fb19c..49383c17 100644 --- a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/error.html +++ b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/error.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          ScreenlessConfiguredPaymentFailed class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/transactionId.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/transactionId.html index a2fe7e05..d9eeac55 100644 --- a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/transactionId.html +++ b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          ScreenlessConfiguredPaymentFailed class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessMethodCallError-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessMethodCallError-class-sidebar.html index 9a84b0d1..21055e20 100644 --- a/doc/model_result_screenless_result/ScreenlessMethodCallError-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessMethodCallError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                          1. Constructors
                                                                                                                                          2. -
                                                                                                                                          3. ScreenlessMethodCallError
                                                                                                                                          4. +
                                                                                                                                          5. new
                                                                                                                                          6. diff --git a/doc/model_result_screenless_result/ScreenlessMethodCallError-class.html b/doc/model_result_screenless_result/ScreenlessMethodCallError-class.html index c3961def..bb109067 100644 --- a/doc/model_result_screenless_result/ScreenlessMethodCallError-class.html +++ b/doc/model_result_screenless_result/ScreenlessMethodCallError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                            ScreenlessMethodCallError
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            ScreenlessMethodCallError class

                                                                                                                                            Constructors

                                                                                                                                            -
                                                                                                                                            +
                                                                                                                                            ScreenlessMethodCallError({required String message})
                                                                                                                                            @@ -210,7 +207,7 @@

                                                                                                                                            Operators

                                                                                                                                            @@ -223,7 +220,7 @@
                                                                                                                                            screenless_result library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_result_screenless_result/ScreenlessMethodCallError/ScreenlessMethodCallError.html b/doc/model_result_screenless_result/ScreenlessMethodCallError/ScreenlessMethodCallError.html index 1a091915..43276464 100644 --- a/doc/model_result_screenless_result/ScreenlessMethodCallError/ScreenlessMethodCallError.html +++ b/doc/model_result_screenless_result/ScreenlessMethodCallError/ScreenlessMethodCallError.html @@ -4,8 +4,8 @@ - - ScreenlessMethodCallError constructor - ScreenlessMethodCallError - screenless_result library - Dart API + + ScreenlessMethodCallError.new constructor - ScreenlessMethodCallError - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                            ScreenlessMethodCallError
                                                                                                                                            +
                                                                                                                                            ScreenlessMethodCallError.new
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation
                                                                                                                                            ScreenlessMethodCallError class
                                                                                                                                            @@ -94,7 +91,7 @@
                                                                                                                                            ScreenlessMethodCallError class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_result_screenless_result/ScreenlessMethodCallError/message.html b/doc/model_result_screenless_result/ScreenlessMethodCallError/message.html index 1de1674d..4c8c66ea 100644 --- a/doc/model_result_screenless_result/ScreenlessMethodCallError/message.html +++ b/doc/model_result_screenless_result/ScreenlessMethodCallError/message.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            ScreenlessMethodCallError class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_result_screenless_result/ScreenlessPaid-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessPaid-class-sidebar.html index 568e995f..102c4139 100644 --- a/doc/model_result_screenless_result/ScreenlessPaid-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessPaid-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                            1. Constructors
                                                                                                                                            2. -
                                                                                                                                            3. ScreenlessPaid
                                                                                                                                            4. +
                                                                                                                                            5. new
                                                                                                                                            6. diff --git a/doc/model_result_screenless_result/ScreenlessPaid-class.html b/doc/model_result_screenless_result/ScreenlessPaid-class.html index f8ad2c78..cd57f040 100644 --- a/doc/model_result_screenless_result/ScreenlessPaid-class.html +++ b/doc/model_result_screenless_result/ScreenlessPaid-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                              ScreenlessPaid
                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              ScreenlessPaid class

                                                                                                                                              Constructors

                                                                                                                                              -
                                                                                                                                              +
                                                                                                                                              ScreenlessPaid({required String transactionId})
                                                                                                                                              @@ -210,7 +207,7 @@

                                                                                                                                              Operators

                                                                                                                                              @@ -223,7 +220,7 @@
                                                                                                                                              screenless_result library
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_result_screenless_result/ScreenlessPaid/ScreenlessPaid.html b/doc/model_result_screenless_result/ScreenlessPaid/ScreenlessPaid.html index 47231e2d..03c76f53 100644 --- a/doc/model_result_screenless_result/ScreenlessPaid/ScreenlessPaid.html +++ b/doc/model_result_screenless_result/ScreenlessPaid/ScreenlessPaid.html @@ -4,8 +4,8 @@ - - ScreenlessPaid constructor - ScreenlessPaid - screenless_result library - Dart API + + ScreenlessPaid.new constructor - ScreenlessPaid - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                              ScreenlessPaid
                                                                                                                                              +
                                                                                                                                              ScreenlessPaid.new
                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              Implementation
                                                                                                                                              ScreenlessPaid class
                                                                                                                                              @@ -94,7 +91,7 @@
                                                                                                                                              ScreenlessPaid class
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_result_screenless_result/ScreenlessPaid/transactionId.html b/doc/model_result_screenless_result/ScreenlessPaid/transactionId.html index ba6654c5..393a27ed 100644 --- a/doc/model_result_screenless_result/ScreenlessPaid/transactionId.html +++ b/doc/model_result_screenless_result/ScreenlessPaid/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                              ScreenlessPaid class
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated-class-sidebar.html index 30cc443d..106365e4 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentCreated-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentCreated-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                              1. Constructors
                                                                                                                                              2. -
                                                                                                                                              3. ScreenlessPaymentCreated
                                                                                                                                              4. +
                                                                                                                                              5. new
                                                                                                                                              6. diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated-class.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated-class.html index 77bc26e2..84c6e85d 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentCreated-class.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentCreated-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                ScreenlessPaymentCreated
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                ScreenlessPaymentCreated class

                                                                                                                                                Constructors

                                                                                                                                                -
                                                                                                                                                +
                                                                                                                                                ScreenlessPaymentCreated({required String transactionId, String? paymentUrl})
                                                                                                                                                @@ -227,7 +224,7 @@

                                                                                                                                                Operators

                                                                                                                                                @@ -240,7 +237,7 @@
                                                                                                                                                screenless_result library
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated/ScreenlessPaymentCreated.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated/ScreenlessPaymentCreated.html index 7c4dc5c2..9b824889 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentCreated/ScreenlessPaymentCreated.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentCreated/ScreenlessPaymentCreated.html @@ -4,8 +4,8 @@ - - ScreenlessPaymentCreated constructor - ScreenlessPaymentCreated - screenless_result library - Dart API + + ScreenlessPaymentCreated.new constructor - ScreenlessPaymentCreated - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                ScreenlessPaymentCreated
                                                                                                                                                +
                                                                                                                                                ScreenlessPaymentCreated.new
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation
                                                                                                                                                ScreenlessPaymentCreated class
                                                                                                                                                @@ -98,7 +95,7 @@
                                                                                                                                                ScreenlessPaymentCreated class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated/paymentUrl.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated/paymentUrl.html index 0864466b..00160ec3 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentCreated/paymentUrl.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentCreated/paymentUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                ScreenlessPaymentCreated class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated/transactionId.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated/transactionId.html index ac4a1bcf..e870b4b1 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentCreated/transactionId.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentCreated/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                ScreenlessPaymentCreated class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentError-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessPaymentError-class-sidebar.html index 6cb5ba7e..06347c9e 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentError-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                1. Constructors
                                                                                                                                                2. -
                                                                                                                                                3. ScreenlessPaymentError
                                                                                                                                                4. +
                                                                                                                                                5. new
                                                                                                                                                6. diff --git a/doc/model_result_screenless_result/ScreenlessPaymentError-class.html b/doc/model_result_screenless_result/ScreenlessPaymentError-class.html index 59dce192..4a87ac1f 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentError-class.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                  ScreenlessPaymentError
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  ScreenlessPaymentError class

                                                                                                                                                  Constructors

                                                                                                                                                  -
                                                                                                                                                  +
                                                                                                                                                  ScreenlessPaymentError(String? error)
                                                                                                                                                  @@ -210,7 +207,7 @@

                                                                                                                                                  Operators

                                                                                                                                                  @@ -223,7 +220,7 @@
                                                                                                                                                  screenless_result library
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_result_screenless_result/ScreenlessPaymentError/ScreenlessPaymentError.html b/doc/model_result_screenless_result/ScreenlessPaymentError/ScreenlessPaymentError.html index 247f6948..20a577d5 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentError/ScreenlessPaymentError.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentError/ScreenlessPaymentError.html @@ -4,8 +4,8 @@ - - ScreenlessPaymentError constructor - ScreenlessPaymentError - screenless_result library - Dart API + + ScreenlessPaymentError.new constructor - ScreenlessPaymentError - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                  ScreenlessPaymentError
                                                                                                                                                  +
                                                                                                                                                  ScreenlessPaymentError.new
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation
                                                                                                                                                  ScreenlessPaymentError class
                                                                                                                                                  @@ -94,7 +91,7 @@
                                                                                                                                                  ScreenlessPaymentError class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_result_screenless_result/ScreenlessPaymentError/error.html b/doc/model_result_screenless_result/ScreenlessPaymentError/error.html index 6ad07ebd..10acaf20 100644 --- a/doc/model_result_screenless_result/ScreenlessPaymentError/error.html +++ b/doc/model_result_screenless_result/ScreenlessPaymentError/error.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                                  ScreenlessPaymentError class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_result_screenless_result/ScreenlessResult-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessResult-class-sidebar.html index 531b0dc2..08a1462b 100644 --- a/doc/model_result_screenless_result/ScreenlessResult-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessResult-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                  1. Constructors
                                                                                                                                                  2. -
                                                                                                                                                  3. ScreenlessResult
                                                                                                                                                  4. +
                                                                                                                                                  5. new
                                                                                                                                                  6. diff --git a/doc/model_result_screenless_result/ScreenlessResult-class.html b/doc/model_result_screenless_result/ScreenlessResult-class.html index fef5f789..18ec4d50 100644 --- a/doc/model_result_screenless_result/ScreenlessResult-class.html +++ b/doc/model_result_screenless_result/ScreenlessResult-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                    ScreenlessResult
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    ScreenlessResult class

                                                                                                                                                    Constructors

                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    ScreenlessResult()
                                                                                                                                                    @@ -201,7 +198,7 @@

                                                                                                                                                    Operators

                                                                                                                                                    @@ -214,7 +211,7 @@
                                                                                                                                                    screenless_result library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_result_screenless_result/ScreenlessResult/ScreenlessResult.html b/doc/model_result_screenless_result/ScreenlessResult/ScreenlessResult.html index 66f0269d..b88df78b 100644 --- a/doc/model_result_screenless_result/ScreenlessResult/ScreenlessResult.html +++ b/doc/model_result_screenless_result/ScreenlessResult/ScreenlessResult.html @@ -4,8 +4,8 @@ - - ScreenlessResult constructor - ScreenlessResult - screenless_result library - Dart API + + ScreenlessResult.new constructor - ScreenlessResult - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                    ScreenlessResult
                                                                                                                                                    +
                                                                                                                                                    ScreenlessResult.new
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    ScreenlessResult constructor
                                                                                                                                                    ScreenlessResult class
                                                                                                                                                    @@ -89,7 +86,7 @@
                                                                                                                                                    ScreenlessResult class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_result_screenless_result/ScreenlessValidationError-class-sidebar.html b/doc/model_result_screenless_result/ScreenlessValidationError-class-sidebar.html index b225fd8b..34167ca9 100644 --- a/doc/model_result_screenless_result/ScreenlessValidationError-class-sidebar.html +++ b/doc/model_result_screenless_result/ScreenlessValidationError-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                    1. Constructors
                                                                                                                                                    2. -
                                                                                                                                                    3. ScreenlessValidationError
                                                                                                                                                    4. +
                                                                                                                                                    5. new
                                                                                                                                                    6. diff --git a/doc/model_result_screenless_result/ScreenlessValidationError-class.html b/doc/model_result_screenless_result/ScreenlessValidationError-class.html index 2a8465b1..f0da493e 100644 --- a/doc/model_result_screenless_result/ScreenlessValidationError-class.html +++ b/doc/model_result_screenless_result/ScreenlessValidationError-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                      ScreenlessValidationError
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      ScreenlessValidationError class

                                                                                                                                                      Constructors

                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      ScreenlessValidationError(String message)
                                                                                                                                                      @@ -211,7 +208,7 @@

                                                                                                                                                      Operators

                                                                                                                                                      @@ -224,7 +221,7 @@
                                                                                                                                                      screenless_result library
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/ScreenlessValidationError/ScreenlessValidationError.html b/doc/model_result_screenless_result/ScreenlessValidationError/ScreenlessValidationError.html index 3e8ae4d7..66ae7232 100644 --- a/doc/model_result_screenless_result/ScreenlessValidationError/ScreenlessValidationError.html +++ b/doc/model_result_screenless_result/ScreenlessValidationError/ScreenlessValidationError.html @@ -4,8 +4,8 @@ - - ScreenlessValidationError constructor - ScreenlessValidationError - screenless_result library - Dart API + + ScreenlessValidationError.new constructor - ScreenlessValidationError - screenless_result library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                      ScreenlessValidationError
                                                                                                                                                      +
                                                                                                                                                      ScreenlessValidationError.new
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      Implementation
                                                                                                                                                      ScreenlessValidationError class
                                                                                                                                                      @@ -94,7 +91,7 @@
                                                                                                                                                      ScreenlessValidationError class
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/ScreenlessValidationError/message.html b/doc/model_result_screenless_result/ScreenlessValidationError/message.html index 662f5e8b..5021c1e7 100644 --- a/doc/model_result_screenless_result/ScreenlessValidationError/message.html +++ b/doc/model_result_screenless_result/ScreenlessValidationError/message.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      Implementation @@ -97,7 +94,7 @@
                                                                                                                                                      ScreenlessValidationError class
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/index.html b/doc/model_result_screenless_result/index.html index ad157db5..bb4bc5e3 100644 --- a/doc/model_result_screenless_result/index.html +++ b/doc/model_result_screenless_result/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      Classes
                                                                                                                                                      flutter_tpay package
                                                                                                                                                      1. Libraries
                                                                                                                                                      2. -
                                                                                                                                                      3. model/apple_pay_configuration
                                                                                                                                                      4. -
                                                                                                                                                      5. model/certificate_pinning_configuration
                                                                                                                                                      6. -
                                                                                                                                                      7. model/google_pay_configuration
                                                                                                                                                      8. -
                                                                                                                                                      9. model/language/language
                                                                                                                                                      10. -
                                                                                                                                                      11. model/language/languages
                                                                                                                                                      12. -
                                                                                                                                                      13. model/language/localized_string
                                                                                                                                                      14. -
                                                                                                                                                      15. model/merchant/merchant
                                                                                                                                                      16. -
                                                                                                                                                      17. model/merchant/merchant_authorization
                                                                                                                                                      18. -
                                                                                                                                                      19. model/merchant/merchant_details
                                                                                                                                                      20. -
                                                                                                                                                      21. model/payer/payer
                                                                                                                                                      22. -
                                                                                                                                                      23. model/payer/payer_address
                                                                                                                                                      24. -
                                                                                                                                                      25. model/payer/payer_context
                                                                                                                                                      26. -
                                                                                                                                                      27. model/paymentChannel/payment_channel
                                                                                                                                                      28. -
                                                                                                                                                      29. model/paymentChannel/payment_constraint
                                                                                                                                                      30. -
                                                                                                                                                      31. model/paymentChannel/payment_group
                                                                                                                                                      32. -
                                                                                                                                                      33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                      34. -
                                                                                                                                                      35. model/paymentMethod/blik_alias
                                                                                                                                                      36. -
                                                                                                                                                      37. model/paymentMethod/credit_card_brand
                                                                                                                                                      38. -
                                                                                                                                                      39. model/paymentMethod/digital_wallet
                                                                                                                                                      40. -
                                                                                                                                                      41. model/paymentMethod/installment_payment
                                                                                                                                                      42. -
                                                                                                                                                      43. model/paymentMethod/payment_method
                                                                                                                                                      44. -
                                                                                                                                                      45. model/paymentMethod/payment_methods
                                                                                                                                                      46. -
                                                                                                                                                      47. model/paymentMethod/tokenized_card
                                                                                                                                                      48. -
                                                                                                                                                      49. model/result/google_pay_configure_result
                                                                                                                                                      50. -
                                                                                                                                                      51. model/result/google_pay_open_result
                                                                                                                                                      52. -
                                                                                                                                                      53. model/result/payment_channels_result
                                                                                                                                                      54. -
                                                                                                                                                      55. model/result/result
                                                                                                                                                      56. -
                                                                                                                                                      57. model/result/screenless_result
                                                                                                                                                      58. -
                                                                                                                                                      59. model/screenless/ambiguous_alias
                                                                                                                                                      60. -
                                                                                                                                                      61. model/screenless/ambiguous_blik_payment
                                                                                                                                                      62. -
                                                                                                                                                      63. model/screenless/apple_pay_payment
                                                                                                                                                      64. -
                                                                                                                                                      65. model/screenless/blik_payment
                                                                                                                                                      66. -
                                                                                                                                                      67. model/screenless/callbacks
                                                                                                                                                      68. -
                                                                                                                                                      69. model/screenless/credit_card
                                                                                                                                                      70. -
                                                                                                                                                      71. model/screenless/credit_card_config
                                                                                                                                                      72. -
                                                                                                                                                      73. model/screenless/credit_card_payment
                                                                                                                                                      74. -
                                                                                                                                                      75. model/screenless/expiration_date
                                                                                                                                                      76. -
                                                                                                                                                      77. model/screenless/google_pay_environment
                                                                                                                                                      78. -
                                                                                                                                                      79. model/screenless/google_pay_payment
                                                                                                                                                      80. -
                                                                                                                                                      81. model/screenless/google_pay_utils_configuration
                                                                                                                                                      82. -
                                                                                                                                                      83. model/screenless/notifications
                                                                                                                                                      84. -
                                                                                                                                                      85. model/screenless/pay_po_payment
                                                                                                                                                      86. -
                                                                                                                                                      87. model/screenless/payment_details
                                                                                                                                                      88. -
                                                                                                                                                      89. model/screenless/raty_pekao_payment
                                                                                                                                                      90. -
                                                                                                                                                      91. model/screenless/recursive
                                                                                                                                                      92. -
                                                                                                                                                      93. model/screenless/redirects
                                                                                                                                                      94. -
                                                                                                                                                      95. model/screenless/screenless_payment
                                                                                                                                                      96. -
                                                                                                                                                      97. model/screenless/transfer_method
                                                                                                                                                      98. -
                                                                                                                                                      99. model/screenless/transfer_payment
                                                                                                                                                      100. -
                                                                                                                                                      101. model/tokenization/tokenization
                                                                                                                                                      102. -
                                                                                                                                                      103. model/tpay_configuration
                                                                                                                                                      104. -
                                                                                                                                                      105. model/tpay_environment
                                                                                                                                                      106. -
                                                                                                                                                      107. model/transaction/single_transaction
                                                                                                                                                      108. -
                                                                                                                                                      109. model/transaction/token_payment
                                                                                                                                                      110. -
                                                                                                                                                      111. model/transaction/transaction
                                                                                                                                                      112. -
                                                                                                                                                      113. model/wallet_configuration
                                                                                                                                                      114. -
                                                                                                                                                      115. tpay_button
                                                                                                                                                      116. -
                                                                                                                                                      117. tpay_method_channel
                                                                                                                                                      118. -
                                                                                                                                                      119. tpay_platform_interface
                                                                                                                                                      120. -
                                                                                                                                                      121. util/google_pay_configuration_util
                                                                                                                                                      122. -
                                                                                                                                                      123. util/google_pay_util
                                                                                                                                                      124. -
                                                                                                                                                      125. util/payment_channels_util
                                                                                                                                                      126. -
                                                                                                                                                      127. util/result_util
                                                                                                                                                      128. -
                                                                                                                                                      129. util/screenless_result_util
                                                                                                                                                      130. +
                                                                                                                                                      131. model/apple_pay_configuration
                                                                                                                                                      132. +
                                                                                                                                                      133. model/certificate_pinning_configuration
                                                                                                                                                      134. +
                                                                                                                                                      135. model/google_pay_configuration
                                                                                                                                                      136. +
                                                                                                                                                      137. model/language/language
                                                                                                                                                      138. +
                                                                                                                                                      139. model/language/languages
                                                                                                                                                      140. +
                                                                                                                                                      141. model/language/localized_string
                                                                                                                                                      142. +
                                                                                                                                                      143. model/merchant/merchant
                                                                                                                                                      144. +
                                                                                                                                                      145. model/merchant/merchant_authorization
                                                                                                                                                      146. +
                                                                                                                                                      147. model/merchant/merchant_details
                                                                                                                                                      148. +
                                                                                                                                                      149. model/payer/payer
                                                                                                                                                      150. +
                                                                                                                                                      151. model/payer/payer_address
                                                                                                                                                      152. +
                                                                                                                                                      153. model/payer/payer_context
                                                                                                                                                      154. +
                                                                                                                                                      155. model/paymentChannel/payment_channel
                                                                                                                                                      156. +
                                                                                                                                                      157. model/paymentChannel/payment_constraint
                                                                                                                                                      158. +
                                                                                                                                                      159. model/paymentChannel/payment_group
                                                                                                                                                      160. +
                                                                                                                                                      161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                      162. +
                                                                                                                                                      163. model/paymentMethod/blik_alias
                                                                                                                                                      164. +
                                                                                                                                                      165. model/paymentMethod/credit_card_brand
                                                                                                                                                      166. +
                                                                                                                                                      167. model/paymentMethod/digital_wallet
                                                                                                                                                      168. +
                                                                                                                                                      169. model/paymentMethod/installment_payment
                                                                                                                                                      170. +
                                                                                                                                                      171. model/paymentMethod/payment_method
                                                                                                                                                      172. +
                                                                                                                                                      173. model/paymentMethod/payment_methods
                                                                                                                                                      174. +
                                                                                                                                                      175. model/paymentMethod/tokenized_card
                                                                                                                                                      176. +
                                                                                                                                                      177. model/result/google_pay_configure_result
                                                                                                                                                      178. +
                                                                                                                                                      179. model/result/google_pay_open_result
                                                                                                                                                      180. +
                                                                                                                                                      181. model/result/payment_channels_result
                                                                                                                                                      182. +
                                                                                                                                                      183. model/result/result
                                                                                                                                                      184. +
                                                                                                                                                      185. model/result/screenless_result
                                                                                                                                                      186. +
                                                                                                                                                      187. model/screenless/ambiguous_alias
                                                                                                                                                      188. +
                                                                                                                                                      189. model/screenless/ambiguous_blik_payment
                                                                                                                                                      190. +
                                                                                                                                                      191. model/screenless/apple_pay_payment
                                                                                                                                                      192. +
                                                                                                                                                      193. model/screenless/blik_payment
                                                                                                                                                      194. +
                                                                                                                                                      195. model/screenless/callbacks
                                                                                                                                                      196. +
                                                                                                                                                      197. model/screenless/credit_card
                                                                                                                                                      198. +
                                                                                                                                                      199. model/screenless/credit_card_config
                                                                                                                                                      200. +
                                                                                                                                                      201. model/screenless/credit_card_payment
                                                                                                                                                      202. +
                                                                                                                                                      203. model/screenless/expiration_date
                                                                                                                                                      204. +
                                                                                                                                                      205. model/screenless/google_pay_environment
                                                                                                                                                      206. +
                                                                                                                                                      207. model/screenless/google_pay_payment
                                                                                                                                                      208. +
                                                                                                                                                      209. model/screenless/google_pay_utils_configuration
                                                                                                                                                      210. +
                                                                                                                                                      211. model/screenless/notifications
                                                                                                                                                      212. +
                                                                                                                                                      213. model/screenless/pay_po_payment
                                                                                                                                                      214. +
                                                                                                                                                      215. model/screenless/payment_details
                                                                                                                                                      216. +
                                                                                                                                                      217. model/screenless/raty_pekao_payment
                                                                                                                                                      218. +
                                                                                                                                                      219. model/screenless/recursive
                                                                                                                                                      220. +
                                                                                                                                                      221. model/screenless/redirects
                                                                                                                                                      222. +
                                                                                                                                                      223. model/screenless/screenless_payment
                                                                                                                                                      224. +
                                                                                                                                                      225. model/screenless/transfer_method
                                                                                                                                                      226. +
                                                                                                                                                      227. model/screenless/transfer_payment
                                                                                                                                                      228. +
                                                                                                                                                      229. model/tokenization/tokenization
                                                                                                                                                      230. +
                                                                                                                                                      231. model/tpay_configuration
                                                                                                                                                      232. +
                                                                                                                                                      233. model/tpay_environment
                                                                                                                                                      234. +
                                                                                                                                                      235. model/transaction/single_transaction
                                                                                                                                                      236. +
                                                                                                                                                      237. model/transaction/token_payment
                                                                                                                                                      238. +
                                                                                                                                                      239. model/transaction/transaction
                                                                                                                                                      240. +
                                                                                                                                                      241. model/wallet_configuration
                                                                                                                                                      242. +
                                                                                                                                                      243. tpay_button
                                                                                                                                                      244. +
                                                                                                                                                      245. tpay_method_channel
                                                                                                                                                      246. +
                                                                                                                                                      247. tpay_platform_interface
                                                                                                                                                      248. +
                                                                                                                                                      249. util/google_pay_configuration_util
                                                                                                                                                      250. +
                                                                                                                                                      251. util/google_pay_util
                                                                                                                                                      252. +
                                                                                                                                                      253. util/payment_channels_util
                                                                                                                                                      254. +
                                                                                                                                                      255. util/result_util
                                                                                                                                                      256. +
                                                                                                                                                      257. util/screenless_result_util
                                                                                                                                                      @@ -238,7 +235,7 @@
                                                                                                                                                      screenless_result library
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/model_result_screenless_result-library-sidebar.html b/doc/model_result_screenless_result/model_result_screenless_result-library-sidebar.html index 03f9d237..942a686f 100644 --- a/doc/model_result_screenless_result/model_result_screenless_result-library-sidebar.html +++ b/doc/model_result_screenless_result/model_result_screenless_result-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                        -
                                                                                                                                                      1. Classes
                                                                                                                                                      2. +
                                                                                                                                                      3. Classes
                                                                                                                                                      4. ScreenlessBlikAmbiguousAlias
                                                                                                                                                      5. ScreenlessConfiguredPaymentFailed
                                                                                                                                                      6. ScreenlessMethodCallError
                                                                                                                                                      7. diff --git a/doc/model_result_screenless_result/model_result_screenless_result-library.html b/doc/model_result_screenless_result/model_result_screenless_result-library.html index 24970736..20d0654f 100644 --- a/doc/model_result_screenless_result/model_result_screenless_result-library.html +++ b/doc/model_result_screenless_result/model_result_screenless_result-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                        New URL

                                                                                                                                                        +

                                                                                                                                                        New URL

                                                                                                                                                        \ No newline at end of file diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class-sidebar.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class-sidebar.html index acc308ec..0ffa128c 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class-sidebar.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                        1. Constructors
                                                                                                                                                        2. -
                                                                                                                                                        3. AmbiguousAlias
                                                                                                                                                        4. +
                                                                                                                                                        5. new
                                                                                                                                                        6. fromJson
                                                                                                                                                        7. diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class.html index 18a15992..86287377 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                          AmbiguousAlias
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          Annotations
                                                                                                                                                          @@ -90,7 +87,7 @@

                                                                                                                                                          AmbiguousAlias class

                                                                                                                                                          Constructors

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          AmbiguousAlias({required String name, required String code})
                                                                                                                                                          @@ -244,7 +241,7 @@

                                                                                                                                                          Operators

                                                                                                                                                          @@ -257,7 +254,7 @@
                                                                                                                                                          ambiguous_alias library
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.fromJson.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.fromJson.html index 23b285ff..cd729e3e 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.fromJson.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          Implementation

                                                                                                                                                          @@ -94,7 +91,7 @@
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.html index 4d83ef5a..f720d391 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.html @@ -4,8 +4,8 @@ - - AmbiguousAlias constructor - AmbiguousAlias - ambiguous_alias library - Dart API + + AmbiguousAlias.new constructor - AmbiguousAlias - ambiguous_alias library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                          AmbiguousAlias
                                                                                                                                                          +
                                                                                                                                                          AmbiguousAlias.new
                                                                                                                                                          -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          Implementation
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          @@ -98,7 +95,7 @@
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/code.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/code.html index 8877df96..50f0442d 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/code.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/code.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/name.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/name.html index ffac21e5..8a9e3954 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/name.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/name.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/toJson.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/toJson.html index 99cbba52..79058c03 100644 --- a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/toJson.html +++ b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                          AmbiguousAlias class
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/index.html b/doc/model_screenless_ambiguous_alias/index.html index 36ae71d8..2582ab1e 100644 --- a/doc/model_screenless_ambiguous_alias/index.html +++ b/doc/model_screenless_ambiguous_alias/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                          - -
                                                                                                                                                          +
                                                                                                                                                          Classes
                                                                                                                                                          flutter_tpay package
                                                                                                                                                          1. Libraries
                                                                                                                                                          2. -
                                                                                                                                                          3. model/apple_pay_configuration
                                                                                                                                                          4. -
                                                                                                                                                          5. model/certificate_pinning_configuration
                                                                                                                                                          6. -
                                                                                                                                                          7. model/google_pay_configuration
                                                                                                                                                          8. -
                                                                                                                                                          9. model/language/language
                                                                                                                                                          10. -
                                                                                                                                                          11. model/language/languages
                                                                                                                                                          12. -
                                                                                                                                                          13. model/language/localized_string
                                                                                                                                                          14. -
                                                                                                                                                          15. model/merchant/merchant
                                                                                                                                                          16. -
                                                                                                                                                          17. model/merchant/merchant_authorization
                                                                                                                                                          18. -
                                                                                                                                                          19. model/merchant/merchant_details
                                                                                                                                                          20. -
                                                                                                                                                          21. model/payer/payer
                                                                                                                                                          22. -
                                                                                                                                                          23. model/payer/payer_address
                                                                                                                                                          24. -
                                                                                                                                                          25. model/payer/payer_context
                                                                                                                                                          26. -
                                                                                                                                                          27. model/paymentChannel/payment_channel
                                                                                                                                                          28. -
                                                                                                                                                          29. model/paymentChannel/payment_constraint
                                                                                                                                                          30. -
                                                                                                                                                          31. model/paymentChannel/payment_group
                                                                                                                                                          32. -
                                                                                                                                                          33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                          34. -
                                                                                                                                                          35. model/paymentMethod/blik_alias
                                                                                                                                                          36. -
                                                                                                                                                          37. model/paymentMethod/credit_card_brand
                                                                                                                                                          38. -
                                                                                                                                                          39. model/paymentMethod/digital_wallet
                                                                                                                                                          40. -
                                                                                                                                                          41. model/paymentMethod/installment_payment
                                                                                                                                                          42. -
                                                                                                                                                          43. model/paymentMethod/payment_method
                                                                                                                                                          44. -
                                                                                                                                                          45. model/paymentMethod/payment_methods
                                                                                                                                                          46. -
                                                                                                                                                          47. model/paymentMethod/tokenized_card
                                                                                                                                                          48. -
                                                                                                                                                          49. model/result/google_pay_configure_result
                                                                                                                                                          50. -
                                                                                                                                                          51. model/result/google_pay_open_result
                                                                                                                                                          52. -
                                                                                                                                                          53. model/result/payment_channels_result
                                                                                                                                                          54. -
                                                                                                                                                          55. model/result/result
                                                                                                                                                          56. -
                                                                                                                                                          57. model/result/screenless_result
                                                                                                                                                          58. -
                                                                                                                                                          59. model/screenless/ambiguous_alias
                                                                                                                                                          60. -
                                                                                                                                                          61. model/screenless/ambiguous_blik_payment
                                                                                                                                                          62. -
                                                                                                                                                          63. model/screenless/apple_pay_payment
                                                                                                                                                          64. -
                                                                                                                                                          65. model/screenless/blik_payment
                                                                                                                                                          66. -
                                                                                                                                                          67. model/screenless/callbacks
                                                                                                                                                          68. -
                                                                                                                                                          69. model/screenless/credit_card
                                                                                                                                                          70. -
                                                                                                                                                          71. model/screenless/credit_card_config
                                                                                                                                                          72. -
                                                                                                                                                          73. model/screenless/credit_card_payment
                                                                                                                                                          74. -
                                                                                                                                                          75. model/screenless/expiration_date
                                                                                                                                                          76. -
                                                                                                                                                          77. model/screenless/google_pay_environment
                                                                                                                                                          78. -
                                                                                                                                                          79. model/screenless/google_pay_payment
                                                                                                                                                          80. -
                                                                                                                                                          81. model/screenless/google_pay_utils_configuration
                                                                                                                                                          82. -
                                                                                                                                                          83. model/screenless/notifications
                                                                                                                                                          84. -
                                                                                                                                                          85. model/screenless/pay_po_payment
                                                                                                                                                          86. -
                                                                                                                                                          87. model/screenless/payment_details
                                                                                                                                                          88. -
                                                                                                                                                          89. model/screenless/raty_pekao_payment
                                                                                                                                                          90. -
                                                                                                                                                          91. model/screenless/recursive
                                                                                                                                                          92. -
                                                                                                                                                          93. model/screenless/redirects
                                                                                                                                                          94. -
                                                                                                                                                          95. model/screenless/screenless_payment
                                                                                                                                                          96. -
                                                                                                                                                          97. model/screenless/transfer_method
                                                                                                                                                          98. -
                                                                                                                                                          99. model/screenless/transfer_payment
                                                                                                                                                          100. -
                                                                                                                                                          101. model/tokenization/tokenization
                                                                                                                                                          102. -
                                                                                                                                                          103. model/tpay_configuration
                                                                                                                                                          104. -
                                                                                                                                                          105. model/tpay_environment
                                                                                                                                                          106. -
                                                                                                                                                          107. model/transaction/single_transaction
                                                                                                                                                          108. -
                                                                                                                                                          109. model/transaction/token_payment
                                                                                                                                                          110. -
                                                                                                                                                          111. model/transaction/transaction
                                                                                                                                                          112. -
                                                                                                                                                          113. model/wallet_configuration
                                                                                                                                                          114. -
                                                                                                                                                          115. tpay_button
                                                                                                                                                          116. -
                                                                                                                                                          117. tpay_method_channel
                                                                                                                                                          118. -
                                                                                                                                                          119. tpay_platform_interface
                                                                                                                                                          120. -
                                                                                                                                                          121. util/google_pay_configuration_util
                                                                                                                                                          122. -
                                                                                                                                                          123. util/google_pay_util
                                                                                                                                                          124. -
                                                                                                                                                          125. util/payment_channels_util
                                                                                                                                                          126. -
                                                                                                                                                          127. util/result_util
                                                                                                                                                          128. -
                                                                                                                                                          129. util/screenless_result_util
                                                                                                                                                          130. +
                                                                                                                                                          131. model/apple_pay_configuration
                                                                                                                                                          132. +
                                                                                                                                                          133. model/certificate_pinning_configuration
                                                                                                                                                          134. +
                                                                                                                                                          135. model/google_pay_configuration
                                                                                                                                                          136. +
                                                                                                                                                          137. model/language/language
                                                                                                                                                          138. +
                                                                                                                                                          139. model/language/languages
                                                                                                                                                          140. +
                                                                                                                                                          141. model/language/localized_string
                                                                                                                                                          142. +
                                                                                                                                                          143. model/merchant/merchant
                                                                                                                                                          144. +
                                                                                                                                                          145. model/merchant/merchant_authorization
                                                                                                                                                          146. +
                                                                                                                                                          147. model/merchant/merchant_details
                                                                                                                                                          148. +
                                                                                                                                                          149. model/payer/payer
                                                                                                                                                          150. +
                                                                                                                                                          151. model/payer/payer_address
                                                                                                                                                          152. +
                                                                                                                                                          153. model/payer/payer_context
                                                                                                                                                          154. +
                                                                                                                                                          155. model/paymentChannel/payment_channel
                                                                                                                                                          156. +
                                                                                                                                                          157. model/paymentChannel/payment_constraint
                                                                                                                                                          158. +
                                                                                                                                                          159. model/paymentChannel/payment_group
                                                                                                                                                          160. +
                                                                                                                                                          161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                          162. +
                                                                                                                                                          163. model/paymentMethod/blik_alias
                                                                                                                                                          164. +
                                                                                                                                                          165. model/paymentMethod/credit_card_brand
                                                                                                                                                          166. +
                                                                                                                                                          167. model/paymentMethod/digital_wallet
                                                                                                                                                          168. +
                                                                                                                                                          169. model/paymentMethod/installment_payment
                                                                                                                                                          170. +
                                                                                                                                                          171. model/paymentMethod/payment_method
                                                                                                                                                          172. +
                                                                                                                                                          173. model/paymentMethod/payment_methods
                                                                                                                                                          174. +
                                                                                                                                                          175. model/paymentMethod/tokenized_card
                                                                                                                                                          176. +
                                                                                                                                                          177. model/result/google_pay_configure_result
                                                                                                                                                          178. +
                                                                                                                                                          179. model/result/google_pay_open_result
                                                                                                                                                          180. +
                                                                                                                                                          181. model/result/payment_channels_result
                                                                                                                                                          182. +
                                                                                                                                                          183. model/result/result
                                                                                                                                                          184. +
                                                                                                                                                          185. model/result/screenless_result
                                                                                                                                                          186. +
                                                                                                                                                          187. model/screenless/ambiguous_alias
                                                                                                                                                          188. +
                                                                                                                                                          189. model/screenless/ambiguous_blik_payment
                                                                                                                                                          190. +
                                                                                                                                                          191. model/screenless/apple_pay_payment
                                                                                                                                                          192. +
                                                                                                                                                          193. model/screenless/blik_payment
                                                                                                                                                          194. +
                                                                                                                                                          195. model/screenless/callbacks
                                                                                                                                                          196. +
                                                                                                                                                          197. model/screenless/credit_card
                                                                                                                                                          198. +
                                                                                                                                                          199. model/screenless/credit_card_config
                                                                                                                                                          200. +
                                                                                                                                                          201. model/screenless/credit_card_payment
                                                                                                                                                          202. +
                                                                                                                                                          203. model/screenless/expiration_date
                                                                                                                                                          204. +
                                                                                                                                                          205. model/screenless/google_pay_environment
                                                                                                                                                          206. +
                                                                                                                                                          207. model/screenless/google_pay_payment
                                                                                                                                                          208. +
                                                                                                                                                          209. model/screenless/google_pay_utils_configuration
                                                                                                                                                          210. +
                                                                                                                                                          211. model/screenless/notifications
                                                                                                                                                          212. +
                                                                                                                                                          213. model/screenless/pay_po_payment
                                                                                                                                                          214. +
                                                                                                                                                          215. model/screenless/payment_details
                                                                                                                                                          216. +
                                                                                                                                                          217. model/screenless/raty_pekao_payment
                                                                                                                                                          218. +
                                                                                                                                                          219. model/screenless/recursive
                                                                                                                                                          220. +
                                                                                                                                                          221. model/screenless/redirects
                                                                                                                                                          222. +
                                                                                                                                                          223. model/screenless/screenless_payment
                                                                                                                                                          224. +
                                                                                                                                                          225. model/screenless/transfer_method
                                                                                                                                                          226. +
                                                                                                                                                          227. model/screenless/transfer_payment
                                                                                                                                                          228. +
                                                                                                                                                          229. model/tokenization/tokenization
                                                                                                                                                          230. +
                                                                                                                                                          231. model/tpay_configuration
                                                                                                                                                          232. +
                                                                                                                                                          233. model/tpay_environment
                                                                                                                                                          234. +
                                                                                                                                                          235. model/transaction/single_transaction
                                                                                                                                                          236. +
                                                                                                                                                          237. model/transaction/token_payment
                                                                                                                                                          238. +
                                                                                                                                                          239. model/transaction/transaction
                                                                                                                                                          240. +
                                                                                                                                                          241. model/wallet_configuration
                                                                                                                                                          242. +
                                                                                                                                                          243. tpay_button
                                                                                                                                                          244. +
                                                                                                                                                          245. tpay_method_channel
                                                                                                                                                          246. +
                                                                                                                                                          247. tpay_platform_interface
                                                                                                                                                          248. +
                                                                                                                                                          249. util/google_pay_configuration_util
                                                                                                                                                          250. +
                                                                                                                                                          251. util/google_pay_util
                                                                                                                                                          252. +
                                                                                                                                                          253. util/payment_channels_util
                                                                                                                                                          254. +
                                                                                                                                                          255. util/result_util
                                                                                                                                                          256. +
                                                                                                                                                          257. util/screenless_result_util
                                                                                                                                                          @@ -176,7 +173,7 @@
                                                                                                                                                          ambiguous_alias library
                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library-sidebar.html b/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library-sidebar.html index 5460e03f..b7e4511d 100644 --- a/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library-sidebar.html +++ b/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                            -
                                                                                                                                                          1. Classes
                                                                                                                                                          2. +
                                                                                                                                                          3. Classes
                                                                                                                                                          4. AmbiguousAlias
                                                                                                                                                          5. diff --git a/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library.html b/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library.html index 35ea7533..2ad73cc1 100644 --- a/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library.html +++ b/doc/model_screenless_ambiguous_alias/model_screenless_ambiguous_alias-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                            New URL

                                                                                                                                                            +

                                                                                                                                                            New URL

                                                                                                                                                            \ No newline at end of file diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class-sidebar.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class-sidebar.html index e7271d54..22dde9ad 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class-sidebar.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                            1. Constructors
                                                                                                                                                            2. -
                                                                                                                                                            3. AmbiguousBLIKPayment
                                                                                                                                                            4. +
                                                                                                                                                            5. new
                                                                                                                                                            6. fromJson
                                                                                                                                                            7. diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class.html index 8c05909c..4055f2b8 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                              AmbiguousBLIKPayment
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              Annotations
                                                                                                                                                              @@ -91,7 +88,7 @@

                                                                                                                                                              AmbiguousBLIKPayment class

                                                                                                                                                              Constructors

                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              AmbiguousBLIKPayment({required String transactionId, required BlikAlias blikAlias, required AmbiguousAlias ambiguousAlias})
                                                                                                                                                              @@ -257,7 +254,7 @@

                                                                                                                                                              Operators

                                                                                                                                                              @@ -270,7 +267,7 @@
                                                                                                                                                              ambiguous_blik_payment library
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.fromJson.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.fromJson.html index 2701317a..59a60556 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.fromJson.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Implementation

                                                                                                                                                              @@ -94,7 +91,7 @@
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.html index ab011fc6..27a73d96 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.html @@ -4,8 +4,8 @@ - - AmbiguousBLIKPayment constructor - AmbiguousBLIKPayment - ambiguous_blik_payment library - Dart API + + AmbiguousBLIKPayment.new constructor - AmbiguousBLIKPayment - ambiguous_blik_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                              AmbiguousBLIKPayment
                                                                                                                                                              +
                                                                                                                                                              AmbiguousBLIKPayment.new
                                                                                                                                                              -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Implementation
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              @@ -100,7 +97,7 @@
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/ambiguousAlias.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/ambiguousAlias.html index d69b8130..476e9ada 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/ambiguousAlias.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/ambiguousAlias.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/blikAlias.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/blikAlias.html index fb5f683b..6f9124e9 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/blikAlias.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/blikAlias.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/toJson.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/toJson.html index 1ff87b18..3b0fa715 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/toJson.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/transactionId.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/transactionId.html index 9b6bd4dd..22d51e8b 100644 --- a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/transactionId.html +++ b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/transactionId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                              AmbiguousBLIKPayment class
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/index.html b/doc/model_screenless_ambiguous_blik_payment/index.html index 20fe2924..36ff047e 100644 --- a/doc/model_screenless_ambiguous_blik_payment/index.html +++ b/doc/model_screenless_ambiguous_blik_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                              - -
                                                                                                                                                              +
                                                                                                                                                              Classes
                                                                                                                                                              flutter_tpay package
                                                                                                                                                              1. Libraries
                                                                                                                                                              2. -
                                                                                                                                                              3. model/apple_pay_configuration
                                                                                                                                                              4. -
                                                                                                                                                              5. model/certificate_pinning_configuration
                                                                                                                                                              6. -
                                                                                                                                                              7. model/google_pay_configuration
                                                                                                                                                              8. -
                                                                                                                                                              9. model/language/language
                                                                                                                                                              10. -
                                                                                                                                                              11. model/language/languages
                                                                                                                                                              12. -
                                                                                                                                                              13. model/language/localized_string
                                                                                                                                                              14. -
                                                                                                                                                              15. model/merchant/merchant
                                                                                                                                                              16. -
                                                                                                                                                              17. model/merchant/merchant_authorization
                                                                                                                                                              18. -
                                                                                                                                                              19. model/merchant/merchant_details
                                                                                                                                                              20. -
                                                                                                                                                              21. model/payer/payer
                                                                                                                                                              22. -
                                                                                                                                                              23. model/payer/payer_address
                                                                                                                                                              24. -
                                                                                                                                                              25. model/payer/payer_context
                                                                                                                                                              26. -
                                                                                                                                                              27. model/paymentChannel/payment_channel
                                                                                                                                                              28. -
                                                                                                                                                              29. model/paymentChannel/payment_constraint
                                                                                                                                                              30. -
                                                                                                                                                              31. model/paymentChannel/payment_group
                                                                                                                                                              32. -
                                                                                                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                              34. -
                                                                                                                                                              35. model/paymentMethod/blik_alias
                                                                                                                                                              36. -
                                                                                                                                                              37. model/paymentMethod/credit_card_brand
                                                                                                                                                              38. -
                                                                                                                                                              39. model/paymentMethod/digital_wallet
                                                                                                                                                              40. -
                                                                                                                                                              41. model/paymentMethod/installment_payment
                                                                                                                                                              42. -
                                                                                                                                                              43. model/paymentMethod/payment_method
                                                                                                                                                              44. -
                                                                                                                                                              45. model/paymentMethod/payment_methods
                                                                                                                                                              46. -
                                                                                                                                                              47. model/paymentMethod/tokenized_card
                                                                                                                                                              48. -
                                                                                                                                                              49. model/result/google_pay_configure_result
                                                                                                                                                              50. -
                                                                                                                                                              51. model/result/google_pay_open_result
                                                                                                                                                              52. -
                                                                                                                                                              53. model/result/payment_channels_result
                                                                                                                                                              54. -
                                                                                                                                                              55. model/result/result
                                                                                                                                                              56. -
                                                                                                                                                              57. model/result/screenless_result
                                                                                                                                                              58. -
                                                                                                                                                              59. model/screenless/ambiguous_alias
                                                                                                                                                              60. -
                                                                                                                                                              61. model/screenless/ambiguous_blik_payment
                                                                                                                                                              62. -
                                                                                                                                                              63. model/screenless/apple_pay_payment
                                                                                                                                                              64. -
                                                                                                                                                              65. model/screenless/blik_payment
                                                                                                                                                              66. -
                                                                                                                                                              67. model/screenless/callbacks
                                                                                                                                                              68. -
                                                                                                                                                              69. model/screenless/credit_card
                                                                                                                                                              70. -
                                                                                                                                                              71. model/screenless/credit_card_config
                                                                                                                                                              72. -
                                                                                                                                                              73. model/screenless/credit_card_payment
                                                                                                                                                              74. -
                                                                                                                                                              75. model/screenless/expiration_date
                                                                                                                                                              76. -
                                                                                                                                                              77. model/screenless/google_pay_environment
                                                                                                                                                              78. -
                                                                                                                                                              79. model/screenless/google_pay_payment
                                                                                                                                                              80. -
                                                                                                                                                              81. model/screenless/google_pay_utils_configuration
                                                                                                                                                              82. -
                                                                                                                                                              83. model/screenless/notifications
                                                                                                                                                              84. -
                                                                                                                                                              85. model/screenless/pay_po_payment
                                                                                                                                                              86. -
                                                                                                                                                              87. model/screenless/payment_details
                                                                                                                                                              88. -
                                                                                                                                                              89. model/screenless/raty_pekao_payment
                                                                                                                                                              90. -
                                                                                                                                                              91. model/screenless/recursive
                                                                                                                                                              92. -
                                                                                                                                                              93. model/screenless/redirects
                                                                                                                                                              94. -
                                                                                                                                                              95. model/screenless/screenless_payment
                                                                                                                                                              96. -
                                                                                                                                                              97. model/screenless/transfer_method
                                                                                                                                                              98. -
                                                                                                                                                              99. model/screenless/transfer_payment
                                                                                                                                                              100. -
                                                                                                                                                              101. model/tokenization/tokenization
                                                                                                                                                              102. -
                                                                                                                                                              103. model/tpay_configuration
                                                                                                                                                              104. -
                                                                                                                                                              105. model/tpay_environment
                                                                                                                                                              106. -
                                                                                                                                                              107. model/transaction/single_transaction
                                                                                                                                                              108. -
                                                                                                                                                              109. model/transaction/token_payment
                                                                                                                                                              110. -
                                                                                                                                                              111. model/transaction/transaction
                                                                                                                                                              112. -
                                                                                                                                                              113. model/wallet_configuration
                                                                                                                                                              114. -
                                                                                                                                                              115. tpay_button
                                                                                                                                                              116. -
                                                                                                                                                              117. tpay_method_channel
                                                                                                                                                              118. -
                                                                                                                                                              119. tpay_platform_interface
                                                                                                                                                              120. -
                                                                                                                                                              121. util/google_pay_configuration_util
                                                                                                                                                              122. -
                                                                                                                                                              123. util/google_pay_util
                                                                                                                                                              124. -
                                                                                                                                                              125. util/payment_channels_util
                                                                                                                                                              126. -
                                                                                                                                                              127. util/result_util
                                                                                                                                                              128. -
                                                                                                                                                              129. util/screenless_result_util
                                                                                                                                                              130. +
                                                                                                                                                              131. model/apple_pay_configuration
                                                                                                                                                              132. +
                                                                                                                                                              133. model/certificate_pinning_configuration
                                                                                                                                                              134. +
                                                                                                                                                              135. model/google_pay_configuration
                                                                                                                                                              136. +
                                                                                                                                                              137. model/language/language
                                                                                                                                                              138. +
                                                                                                                                                              139. model/language/languages
                                                                                                                                                              140. +
                                                                                                                                                              141. model/language/localized_string
                                                                                                                                                              142. +
                                                                                                                                                              143. model/merchant/merchant
                                                                                                                                                              144. +
                                                                                                                                                              145. model/merchant/merchant_authorization
                                                                                                                                                              146. +
                                                                                                                                                              147. model/merchant/merchant_details
                                                                                                                                                              148. +
                                                                                                                                                              149. model/payer/payer
                                                                                                                                                              150. +
                                                                                                                                                              151. model/payer/payer_address
                                                                                                                                                              152. +
                                                                                                                                                              153. model/payer/payer_context
                                                                                                                                                              154. +
                                                                                                                                                              155. model/paymentChannel/payment_channel
                                                                                                                                                              156. +
                                                                                                                                                              157. model/paymentChannel/payment_constraint
                                                                                                                                                              158. +
                                                                                                                                                              159. model/paymentChannel/payment_group
                                                                                                                                                              160. +
                                                                                                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                              162. +
                                                                                                                                                              163. model/paymentMethod/blik_alias
                                                                                                                                                              164. +
                                                                                                                                                              165. model/paymentMethod/credit_card_brand
                                                                                                                                                              166. +
                                                                                                                                                              167. model/paymentMethod/digital_wallet
                                                                                                                                                              168. +
                                                                                                                                                              169. model/paymentMethod/installment_payment
                                                                                                                                                              170. +
                                                                                                                                                              171. model/paymentMethod/payment_method
                                                                                                                                                              172. +
                                                                                                                                                              173. model/paymentMethod/payment_methods
                                                                                                                                                              174. +
                                                                                                                                                              175. model/paymentMethod/tokenized_card
                                                                                                                                                              176. +
                                                                                                                                                              177. model/result/google_pay_configure_result
                                                                                                                                                              178. +
                                                                                                                                                              179. model/result/google_pay_open_result
                                                                                                                                                              180. +
                                                                                                                                                              181. model/result/payment_channels_result
                                                                                                                                                              182. +
                                                                                                                                                              183. model/result/result
                                                                                                                                                              184. +
                                                                                                                                                              185. model/result/screenless_result
                                                                                                                                                              186. +
                                                                                                                                                              187. model/screenless/ambiguous_alias
                                                                                                                                                              188. +
                                                                                                                                                              189. model/screenless/ambiguous_blik_payment
                                                                                                                                                              190. +
                                                                                                                                                              191. model/screenless/apple_pay_payment
                                                                                                                                                              192. +
                                                                                                                                                              193. model/screenless/blik_payment
                                                                                                                                                              194. +
                                                                                                                                                              195. model/screenless/callbacks
                                                                                                                                                              196. +
                                                                                                                                                              197. model/screenless/credit_card
                                                                                                                                                              198. +
                                                                                                                                                              199. model/screenless/credit_card_config
                                                                                                                                                              200. +
                                                                                                                                                              201. model/screenless/credit_card_payment
                                                                                                                                                              202. +
                                                                                                                                                              203. model/screenless/expiration_date
                                                                                                                                                              204. +
                                                                                                                                                              205. model/screenless/google_pay_environment
                                                                                                                                                              206. +
                                                                                                                                                              207. model/screenless/google_pay_payment
                                                                                                                                                              208. +
                                                                                                                                                              209. model/screenless/google_pay_utils_configuration
                                                                                                                                                              210. +
                                                                                                                                                              211. model/screenless/notifications
                                                                                                                                                              212. +
                                                                                                                                                              213. model/screenless/pay_po_payment
                                                                                                                                                              214. +
                                                                                                                                                              215. model/screenless/payment_details
                                                                                                                                                              216. +
                                                                                                                                                              217. model/screenless/raty_pekao_payment
                                                                                                                                                              218. +
                                                                                                                                                              219. model/screenless/recursive
                                                                                                                                                              220. +
                                                                                                                                                              221. model/screenless/redirects
                                                                                                                                                              222. +
                                                                                                                                                              223. model/screenless/screenless_payment
                                                                                                                                                              224. +
                                                                                                                                                              225. model/screenless/transfer_method
                                                                                                                                                              226. +
                                                                                                                                                              227. model/screenless/transfer_payment
                                                                                                                                                              228. +
                                                                                                                                                              229. model/tokenization/tokenization
                                                                                                                                                              230. +
                                                                                                                                                              231. model/tpay_configuration
                                                                                                                                                              232. +
                                                                                                                                                              233. model/tpay_environment
                                                                                                                                                              234. +
                                                                                                                                                              235. model/transaction/single_transaction
                                                                                                                                                              236. +
                                                                                                                                                              237. model/transaction/token_payment
                                                                                                                                                              238. +
                                                                                                                                                              239. model/transaction/transaction
                                                                                                                                                              240. +
                                                                                                                                                              241. model/wallet_configuration
                                                                                                                                                              242. +
                                                                                                                                                              243. tpay_button
                                                                                                                                                              244. +
                                                                                                                                                              245. tpay_method_channel
                                                                                                                                                              246. +
                                                                                                                                                              247. tpay_platform_interface
                                                                                                                                                              248. +
                                                                                                                                                              249. util/google_pay_configuration_util
                                                                                                                                                              250. +
                                                                                                                                                              251. util/google_pay_util
                                                                                                                                                              252. +
                                                                                                                                                              253. util/payment_channels_util
                                                                                                                                                              254. +
                                                                                                                                                              255. util/result_util
                                                                                                                                                              256. +
                                                                                                                                                              257. util/screenless_result_util
                                                                                                                                                              @@ -176,7 +173,7 @@
                                                                                                                                                              ambiguous_blik_payment library
                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library-sidebar.html b/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library-sidebar.html index bc3ab6d4..6779f8ba 100644 --- a/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library-sidebar.html +++ b/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                                -
                                                                                                                                                              1. Classes
                                                                                                                                                              2. +
                                                                                                                                                              3. Classes
                                                                                                                                                              4. AmbiguousBLIKPayment
                                                                                                                                                              5. diff --git a/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library.html b/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library.html index 906ccefa..f0908a40 100644 --- a/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library.html +++ b/doc/model_screenless_ambiguous_blik_payment/model_screenless_ambiguous_blik_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                                New URL

                                                                                                                                                                +

                                                                                                                                                                New URL

                                                                                                                                                                \ No newline at end of file diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment-class-sidebar.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment-class-sidebar.html index f3cab3ea..b9cec794 100644 --- a/doc/model_screenless_apple_pay_payment/ApplePayPayment-class-sidebar.html +++ b/doc/model_screenless_apple_pay_payment/ApplePayPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                                1. Constructors
                                                                                                                                                                2. -
                                                                                                                                                                3. ApplePayPayment
                                                                                                                                                                4. +
                                                                                                                                                                5. new
                                                                                                                                                                6. fromJson
                                                                                                                                                                7. diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment-class.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment-class.html index 1c0e75e4..2ae6ad4e 100644 --- a/doc/model_screenless_apple_pay_payment/ApplePayPayment-class.html +++ b/doc/model_screenless_apple_pay_payment/ApplePayPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                  ApplePayPayment
                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  +
                                                                                                                                                                  ApplePayPayment class
                                                                                                                                                                  Annotations
                                                                                                                                                                  @@ -95,8 +92,8 @@

                                                                                                                                                                  ApplePayPayment class

                                                                                                                                                                  Constructors

                                                                                                                                                                  -
                                                                                                                                                                  - ApplePayPayment({required PaymentDetails paymentDetails, required Payer payer, required String applePayToken, Callbacks? callbacks}) +
                                                                                                                                                                  + ApplePayPayment({required PaymentDetails paymentDetails, required Payer payer, required String applePayToken, required Callbacks callbacks})
                                                                                                                                                                  @@ -130,7 +127,7 @@

                                                                                                                                                                  Properties

                                                                                                                                                                  callbacks - Callbacks? + Callbacks
                                                                                                                                                                  @@ -273,7 +270,7 @@

                                                                                                                                                                  Operators

                                                                                                                                                                  @@ -286,7 +283,7 @@
                                                                                                                                                                  apple_pay_payment library
                                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                  diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.fromJson.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.fromJson.html index ff683f09..b97320e7 100644 --- a/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.fromJson.html +++ b/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                  - -
                                                                                                                                                                  +
                                                                                                                                                                  Implementation

                                                                                                                                                                  @@ -94,7 +91,7 @@
                                                                                                                                                                  ApplePayPayment class
                                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                  diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.html index b413fbec..4a1b9c30 100644 --- a/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.html +++ b/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.html @@ -4,8 +4,8 @@ - - ApplePayPayment constructor - ApplePayPayment - apple_pay_payment library - Dart API + + ApplePayPayment.new constructor - ApplePayPayment - apple_pay_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                                  ApplePayPayment
                                                                                                                                                                  +
                                                                                                                                                                  ApplePayPayment.new
                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  +
                                                                                                                                                                  ApplePayPayment constructor ApplePayPayment({
                                                                                                                                                                  1. required PaymentDetails paymentDetails,
                                                                                                                                                                  2. required Payer payer,
                                                                                                                                                                  3. required String applePayToken,
                                                                                                                                                                  4. -
                                                                                                                                                                  5. Callbacks? callbacks,
                                                                                                                                                                  6. +
                                                                                                                                                                  7. required Callbacks callbacks,
                                                                                                                                                                  })
                                                                                                                                                      @@ -73,7 +70,7 @@

                                                                                                                                                      Implementation

                                                                                                                                                      required super.paymentDetails, required super.payer, required this.applePayToken, - super.callbacks + required super.callbacks });
                                                                                                                                                    @@ -88,9 +85,9 @@

                                                                                                                                                    Implementation

                                                                                                                                                    ApplePayPayment class
                                                                                                                                                    @@ -102,7 +99,7 @@
                                                                                                                                                    ApplePayPayment class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/applePayToken.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/applePayToken.html index 1867bf2d..4b6d2c86 100644 --- a/doc/model_screenless_apple_pay_payment/ApplePayPayment/applePayToken.html +++ b/doc/model_screenless_apple_pay_payment/ApplePayPayment/applePayToken.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    ApplePayPayment class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/toJson.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/toJson.html index 831318b4..d96491f7 100644 --- a/doc/model_screenless_apple_pay_payment/ApplePayPayment/toJson.html +++ b/doc/model_screenless_apple_pay_payment/ApplePayPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    ApplePayPayment class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_apple_pay_payment/index.html b/doc/model_screenless_apple_pay_payment/index.html index 0e951b6d..b2bf4312 100644 --- a/doc/model_screenless_apple_pay_payment/index.html +++ b/doc/model_screenless_apple_pay_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Classes
                                                                                                                                                    flutter_tpay package
                                                                                                                                                    1. Libraries
                                                                                                                                                    2. -
                                                                                                                                                    3. model/apple_pay_configuration
                                                                                                                                                    4. -
                                                                                                                                                    5. model/certificate_pinning_configuration
                                                                                                                                                    6. -
                                                                                                                                                    7. model/google_pay_configuration
                                                                                                                                                    8. -
                                                                                                                                                    9. model/language/language
                                                                                                                                                    10. -
                                                                                                                                                    11. model/language/languages
                                                                                                                                                    12. -
                                                                                                                                                    13. model/language/localized_string
                                                                                                                                                    14. -
                                                                                                                                                    15. model/merchant/merchant
                                                                                                                                                    16. -
                                                                                                                                                    17. model/merchant/merchant_authorization
                                                                                                                                                    18. -
                                                                                                                                                    19. model/merchant/merchant_details
                                                                                                                                                    20. -
                                                                                                                                                    21. model/payer/payer
                                                                                                                                                    22. -
                                                                                                                                                    23. model/payer/payer_address
                                                                                                                                                    24. -
                                                                                                                                                    25. model/payer/payer_context
                                                                                                                                                    26. -
                                                                                                                                                    27. model/paymentChannel/payment_channel
                                                                                                                                                    28. -
                                                                                                                                                    29. model/paymentChannel/payment_constraint
                                                                                                                                                    30. -
                                                                                                                                                    31. model/paymentChannel/payment_group
                                                                                                                                                    32. -
                                                                                                                                                    33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                    34. -
                                                                                                                                                    35. model/paymentMethod/blik_alias
                                                                                                                                                    36. -
                                                                                                                                                    37. model/paymentMethod/credit_card_brand
                                                                                                                                                    38. -
                                                                                                                                                    39. model/paymentMethod/digital_wallet
                                                                                                                                                    40. -
                                                                                                                                                    41. model/paymentMethod/installment_payment
                                                                                                                                                    42. -
                                                                                                                                                    43. model/paymentMethod/payment_method
                                                                                                                                                    44. -
                                                                                                                                                    45. model/paymentMethod/payment_methods
                                                                                                                                                    46. -
                                                                                                                                                    47. model/paymentMethod/tokenized_card
                                                                                                                                                    48. -
                                                                                                                                                    49. model/result/google_pay_configure_result
                                                                                                                                                    50. -
                                                                                                                                                    51. model/result/google_pay_open_result
                                                                                                                                                    52. -
                                                                                                                                                    53. model/result/payment_channels_result
                                                                                                                                                    54. -
                                                                                                                                                    55. model/result/result
                                                                                                                                                    56. -
                                                                                                                                                    57. model/result/screenless_result
                                                                                                                                                    58. -
                                                                                                                                                    59. model/screenless/ambiguous_alias
                                                                                                                                                    60. -
                                                                                                                                                    61. model/screenless/ambiguous_blik_payment
                                                                                                                                                    62. -
                                                                                                                                                    63. model/screenless/apple_pay_payment
                                                                                                                                                    64. -
                                                                                                                                                    65. model/screenless/blik_payment
                                                                                                                                                    66. -
                                                                                                                                                    67. model/screenless/callbacks
                                                                                                                                                    68. -
                                                                                                                                                    69. model/screenless/credit_card
                                                                                                                                                    70. -
                                                                                                                                                    71. model/screenless/credit_card_config
                                                                                                                                                    72. -
                                                                                                                                                    73. model/screenless/credit_card_payment
                                                                                                                                                    74. -
                                                                                                                                                    75. model/screenless/expiration_date
                                                                                                                                                    76. -
                                                                                                                                                    77. model/screenless/google_pay_environment
                                                                                                                                                    78. -
                                                                                                                                                    79. model/screenless/google_pay_payment
                                                                                                                                                    80. -
                                                                                                                                                    81. model/screenless/google_pay_utils_configuration
                                                                                                                                                    82. -
                                                                                                                                                    83. model/screenless/notifications
                                                                                                                                                    84. -
                                                                                                                                                    85. model/screenless/pay_po_payment
                                                                                                                                                    86. -
                                                                                                                                                    87. model/screenless/payment_details
                                                                                                                                                    88. -
                                                                                                                                                    89. model/screenless/raty_pekao_payment
                                                                                                                                                    90. -
                                                                                                                                                    91. model/screenless/recursive
                                                                                                                                                    92. -
                                                                                                                                                    93. model/screenless/redirects
                                                                                                                                                    94. -
                                                                                                                                                    95. model/screenless/screenless_payment
                                                                                                                                                    96. -
                                                                                                                                                    97. model/screenless/transfer_method
                                                                                                                                                    98. -
                                                                                                                                                    99. model/screenless/transfer_payment
                                                                                                                                                    100. -
                                                                                                                                                    101. model/tokenization/tokenization
                                                                                                                                                    102. -
                                                                                                                                                    103. model/tpay_configuration
                                                                                                                                                    104. -
                                                                                                                                                    105. model/tpay_environment
                                                                                                                                                    106. -
                                                                                                                                                    107. model/transaction/single_transaction
                                                                                                                                                    108. -
                                                                                                                                                    109. model/transaction/token_payment
                                                                                                                                                    110. -
                                                                                                                                                    111. model/transaction/transaction
                                                                                                                                                    112. -
                                                                                                                                                    113. model/wallet_configuration
                                                                                                                                                    114. -
                                                                                                                                                    115. tpay_button
                                                                                                                                                    116. -
                                                                                                                                                    117. tpay_method_channel
                                                                                                                                                    118. -
                                                                                                                                                    119. tpay_platform_interface
                                                                                                                                                    120. -
                                                                                                                                                    121. util/google_pay_configuration_util
                                                                                                                                                    122. -
                                                                                                                                                    123. util/google_pay_util
                                                                                                                                                    124. -
                                                                                                                                                    125. util/payment_channels_util
                                                                                                                                                    126. -
                                                                                                                                                    127. util/result_util
                                                                                                                                                    128. -
                                                                                                                                                    129. util/screenless_result_util
                                                                                                                                                    130. +
                                                                                                                                                    131. model/apple_pay_configuration
                                                                                                                                                    132. +
                                                                                                                                                    133. model/certificate_pinning_configuration
                                                                                                                                                    134. +
                                                                                                                                                    135. model/google_pay_configuration
                                                                                                                                                    136. +
                                                                                                                                                    137. model/language/language
                                                                                                                                                    138. +
                                                                                                                                                    139. model/language/languages
                                                                                                                                                    140. +
                                                                                                                                                    141. model/language/localized_string
                                                                                                                                                    142. +
                                                                                                                                                    143. model/merchant/merchant
                                                                                                                                                    144. +
                                                                                                                                                    145. model/merchant/merchant_authorization
                                                                                                                                                    146. +
                                                                                                                                                    147. model/merchant/merchant_details
                                                                                                                                                    148. +
                                                                                                                                                    149. model/payer/payer
                                                                                                                                                    150. +
                                                                                                                                                    151. model/payer/payer_address
                                                                                                                                                    152. +
                                                                                                                                                    153. model/payer/payer_context
                                                                                                                                                    154. +
                                                                                                                                                    155. model/paymentChannel/payment_channel
                                                                                                                                                    156. +
                                                                                                                                                    157. model/paymentChannel/payment_constraint
                                                                                                                                                    158. +
                                                                                                                                                    159. model/paymentChannel/payment_group
                                                                                                                                                    160. +
                                                                                                                                                    161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                    162. +
                                                                                                                                                    163. model/paymentMethod/blik_alias
                                                                                                                                                    164. +
                                                                                                                                                    165. model/paymentMethod/credit_card_brand
                                                                                                                                                    166. +
                                                                                                                                                    167. model/paymentMethod/digital_wallet
                                                                                                                                                    168. +
                                                                                                                                                    169. model/paymentMethod/installment_payment
                                                                                                                                                    170. +
                                                                                                                                                    171. model/paymentMethod/payment_method
                                                                                                                                                    172. +
                                                                                                                                                    173. model/paymentMethod/payment_methods
                                                                                                                                                    174. +
                                                                                                                                                    175. model/paymentMethod/tokenized_card
                                                                                                                                                    176. +
                                                                                                                                                    177. model/result/google_pay_configure_result
                                                                                                                                                    178. +
                                                                                                                                                    179. model/result/google_pay_open_result
                                                                                                                                                    180. +
                                                                                                                                                    181. model/result/payment_channels_result
                                                                                                                                                    182. +
                                                                                                                                                    183. model/result/result
                                                                                                                                                    184. +
                                                                                                                                                    185. model/result/screenless_result
                                                                                                                                                    186. +
                                                                                                                                                    187. model/screenless/ambiguous_alias
                                                                                                                                                    188. +
                                                                                                                                                    189. model/screenless/ambiguous_blik_payment
                                                                                                                                                    190. +
                                                                                                                                                    191. model/screenless/apple_pay_payment
                                                                                                                                                    192. +
                                                                                                                                                    193. model/screenless/blik_payment
                                                                                                                                                    194. +
                                                                                                                                                    195. model/screenless/callbacks
                                                                                                                                                    196. +
                                                                                                                                                    197. model/screenless/credit_card
                                                                                                                                                    198. +
                                                                                                                                                    199. model/screenless/credit_card_config
                                                                                                                                                    200. +
                                                                                                                                                    201. model/screenless/credit_card_payment
                                                                                                                                                    202. +
                                                                                                                                                    203. model/screenless/expiration_date
                                                                                                                                                    204. +
                                                                                                                                                    205. model/screenless/google_pay_environment
                                                                                                                                                    206. +
                                                                                                                                                    207. model/screenless/google_pay_payment
                                                                                                                                                    208. +
                                                                                                                                                    209. model/screenless/google_pay_utils_configuration
                                                                                                                                                    210. +
                                                                                                                                                    211. model/screenless/notifications
                                                                                                                                                    212. +
                                                                                                                                                    213. model/screenless/pay_po_payment
                                                                                                                                                    214. +
                                                                                                                                                    215. model/screenless/payment_details
                                                                                                                                                    216. +
                                                                                                                                                    217. model/screenless/raty_pekao_payment
                                                                                                                                                    218. +
                                                                                                                                                    219. model/screenless/recursive
                                                                                                                                                    220. +
                                                                                                                                                    221. model/screenless/redirects
                                                                                                                                                    222. +
                                                                                                                                                    223. model/screenless/screenless_payment
                                                                                                                                                    224. +
                                                                                                                                                    225. model/screenless/transfer_method
                                                                                                                                                    226. +
                                                                                                                                                    227. model/screenless/transfer_payment
                                                                                                                                                    228. +
                                                                                                                                                    229. model/tokenization/tokenization
                                                                                                                                                    230. +
                                                                                                                                                    231. model/tpay_configuration
                                                                                                                                                    232. +
                                                                                                                                                    233. model/tpay_environment
                                                                                                                                                    234. +
                                                                                                                                                    235. model/transaction/single_transaction
                                                                                                                                                    236. +
                                                                                                                                                    237. model/transaction/token_payment
                                                                                                                                                    238. +
                                                                                                                                                    239. model/transaction/transaction
                                                                                                                                                    240. +
                                                                                                                                                    241. model/wallet_configuration
                                                                                                                                                    242. +
                                                                                                                                                    243. tpay_button
                                                                                                                                                    244. +
                                                                                                                                                    245. tpay_method_channel
                                                                                                                                                    246. +
                                                                                                                                                    247. tpay_platform_interface
                                                                                                                                                    248. +
                                                                                                                                                    249. util/google_pay_configuration_util
                                                                                                                                                    250. +
                                                                                                                                                    251. util/google_pay_util
                                                                                                                                                    252. +
                                                                                                                                                    253. util/payment_channels_util
                                                                                                                                                    254. +
                                                                                                                                                    255. util/result_util
                                                                                                                                                    256. +
                                                                                                                                                    257. util/screenless_result_util
                                                                                                                                                    @@ -177,7 +174,7 @@
                                                                                                                                                    apple_pay_payment library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library-sidebar.html b/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library-sidebar.html index 379885fb..da42883c 100644 --- a/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library-sidebar.html +++ b/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                      -
                                                                                                                                                    1. Classes
                                                                                                                                                    2. +
                                                                                                                                                    3. Classes
                                                                                                                                                    4. ApplePayPayment
                                                                                                                                                    5. diff --git a/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library.html b/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library.html index 337793ae..bdc2035a 100644 --- a/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library.html +++ b/doc/model_screenless_apple_pay_payment/model_screenless_apple_pay_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                      New URL

                                                                                                                                                      +

                                                                                                                                                      New URL

                                                                                                                                                      \ No newline at end of file diff --git a/doc/model_screenless_blik_payment/BLIKPayment-class-sidebar.html b/doc/model_screenless_blik_payment/BLIKPayment-class-sidebar.html index 2153a46f..872e3e8d 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment-class-sidebar.html +++ b/doc/model_screenless_blik_payment/BLIKPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                      1. Constructors
                                                                                                                                                      2. -
                                                                                                                                                      3. BLIKPayment
                                                                                                                                                      4. +
                                                                                                                                                      5. new
                                                                                                                                                      6. fromJson
                                                                                                                                                      7. diff --git a/doc/model_screenless_blik_payment/BLIKPayment-class.html b/doc/model_screenless_blik_payment/BLIKPayment-class.html index 96119e87..6571d0e5 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment-class.html +++ b/doc/model_screenless_blik_payment/BLIKPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                        BLIKPayment
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        BLIKPayment class
                                                                                                                                                        Annotations
                                                                                                                                                        @@ -99,8 +96,8 @@

                                                                                                                                                        BLIKPayment class

                                                                                                                                                        Constructors

                                                                                                                                                        -
                                                                                                                                                        - BLIKPayment({required PaymentDetails paymentDetails, required Payer payer, Callbacks? callbacks, String? code, BlikAlias? alias}) +
                                                                                                                                                        + BLIKPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks callbacks, String? code, BlikAlias? alias})
                                                                                                                                                        @@ -134,7 +131,7 @@

                                                                                                                                                        Properties

                                                                                                                                                        callbacks - Callbacks? + Callbacks
                                                                                                                                                        @@ -289,7 +286,7 @@

                                                                                                                                                        Operators

                                                                                                                                                        @@ -302,7 +299,7 @@
                                                                                                                                                        blik_payment library
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.fromJson.html b/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.fromJson.html index 9f1d1baa..b98bb5f5 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.fromJson.html +++ b/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation

                                                                                                                                                        @@ -94,7 +91,7 @@
                                                                                                                                                        BLIKPayment class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.html b/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.html index d92e9335..55ad09bb 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.html +++ b/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.html @@ -4,8 +4,8 @@ - - BLIKPayment constructor - BLIKPayment - blik_payment library - Dart API + + BLIKPayment.new constructor - BLIKPayment - blik_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                        BLIKPayment
                                                                                                                                                        +
                                                                                                                                                        BLIKPayment.new
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        BLIKPayment constructor BLIKPayment({
                                                                                                                                                        1. required PaymentDetails paymentDetails,
                                                                                                                                                        2. required Payer payer,
                                                                                                                                                        3. -
                                                                                                                                                        4. Callbacks? callbacks,
                                                                                                                                                        5. +
                                                                                                                                                        6. required Callbacks callbacks,
                                                                                                                                                        7. String? code,
                                                                                                                                                        8. BlikAlias? alias,
                                                                                                                                                        }) @@ -73,7 +70,7 @@

                                                                                                                                                        Implementation

                                                                                                                                                        BLIKPayment({
                                                                                                                                                           required super.paymentDetails,
                                                                                                                                                           required super.payer,
                                                                                                                                                        -  super.callbacks,
                                                                                                                                                        +  required super.callbacks,
                                                                                                                                                           this.code,
                                                                                                                                                           this.alias
                                                                                                                                                         });
                                                                                                                                                        @@ -90,9 +87,9 @@

                                                                                                                                                        Implementation

                                                                                                                                                        BLIKPayment class
                                                                                                                                                        @@ -104,7 +101,7 @@
                                                                                                                                                        BLIKPayment class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/BLIKPayment/alias.html b/doc/model_screenless_blik_payment/BLIKPayment/alias.html index dd7a485a..afb6a354 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment/alias.html +++ b/doc/model_screenless_blik_payment/BLIKPayment/alias.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                        BLIKPayment class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/BLIKPayment/code.html b/doc/model_screenless_blik_payment/BLIKPayment/code.html index 2a593958..951f220e 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment/code.html +++ b/doc/model_screenless_blik_payment/BLIKPayment/code.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                        BLIKPayment class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/BLIKPayment/toJson.html b/doc/model_screenless_blik_payment/BLIKPayment/toJson.html index c3eb99e9..b7b2a412 100644 --- a/doc/model_screenless_blik_payment/BLIKPayment/toJson.html +++ b/doc/model_screenless_blik_payment/BLIKPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                        BLIKPayment class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/index.html b/doc/model_screenless_blik_payment/index.html index b0f1310c..b19f5218 100644 --- a/doc/model_screenless_blik_payment/index.html +++ b/doc/model_screenless_blik_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Classes
                                                                                                                                                        flutter_tpay package
                                                                                                                                                        1. Libraries
                                                                                                                                                        2. -
                                                                                                                                                        3. model/apple_pay_configuration
                                                                                                                                                        4. -
                                                                                                                                                        5. model/certificate_pinning_configuration
                                                                                                                                                        6. -
                                                                                                                                                        7. model/google_pay_configuration
                                                                                                                                                        8. -
                                                                                                                                                        9. model/language/language
                                                                                                                                                        10. -
                                                                                                                                                        11. model/language/languages
                                                                                                                                                        12. -
                                                                                                                                                        13. model/language/localized_string
                                                                                                                                                        14. -
                                                                                                                                                        15. model/merchant/merchant
                                                                                                                                                        16. -
                                                                                                                                                        17. model/merchant/merchant_authorization
                                                                                                                                                        18. -
                                                                                                                                                        19. model/merchant/merchant_details
                                                                                                                                                        20. -
                                                                                                                                                        21. model/payer/payer
                                                                                                                                                        22. -
                                                                                                                                                        23. model/payer/payer_address
                                                                                                                                                        24. -
                                                                                                                                                        25. model/payer/payer_context
                                                                                                                                                        26. -
                                                                                                                                                        27. model/paymentChannel/payment_channel
                                                                                                                                                        28. -
                                                                                                                                                        29. model/paymentChannel/payment_constraint
                                                                                                                                                        30. -
                                                                                                                                                        31. model/paymentChannel/payment_group
                                                                                                                                                        32. -
                                                                                                                                                        33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                        34. -
                                                                                                                                                        35. model/paymentMethod/blik_alias
                                                                                                                                                        36. -
                                                                                                                                                        37. model/paymentMethod/credit_card_brand
                                                                                                                                                        38. -
                                                                                                                                                        39. model/paymentMethod/digital_wallet
                                                                                                                                                        40. -
                                                                                                                                                        41. model/paymentMethod/installment_payment
                                                                                                                                                        42. -
                                                                                                                                                        43. model/paymentMethod/payment_method
                                                                                                                                                        44. -
                                                                                                                                                        45. model/paymentMethod/payment_methods
                                                                                                                                                        46. -
                                                                                                                                                        47. model/paymentMethod/tokenized_card
                                                                                                                                                        48. -
                                                                                                                                                        49. model/result/google_pay_configure_result
                                                                                                                                                        50. -
                                                                                                                                                        51. model/result/google_pay_open_result
                                                                                                                                                        52. -
                                                                                                                                                        53. model/result/payment_channels_result
                                                                                                                                                        54. -
                                                                                                                                                        55. model/result/result
                                                                                                                                                        56. -
                                                                                                                                                        57. model/result/screenless_result
                                                                                                                                                        58. -
                                                                                                                                                        59. model/screenless/ambiguous_alias
                                                                                                                                                        60. -
                                                                                                                                                        61. model/screenless/ambiguous_blik_payment
                                                                                                                                                        62. -
                                                                                                                                                        63. model/screenless/apple_pay_payment
                                                                                                                                                        64. -
                                                                                                                                                        65. model/screenless/blik_payment
                                                                                                                                                        66. -
                                                                                                                                                        67. model/screenless/callbacks
                                                                                                                                                        68. -
                                                                                                                                                        69. model/screenless/credit_card
                                                                                                                                                        70. -
                                                                                                                                                        71. model/screenless/credit_card_config
                                                                                                                                                        72. -
                                                                                                                                                        73. model/screenless/credit_card_payment
                                                                                                                                                        74. -
                                                                                                                                                        75. model/screenless/expiration_date
                                                                                                                                                        76. -
                                                                                                                                                        77. model/screenless/google_pay_environment
                                                                                                                                                        78. -
                                                                                                                                                        79. model/screenless/google_pay_payment
                                                                                                                                                        80. -
                                                                                                                                                        81. model/screenless/google_pay_utils_configuration
                                                                                                                                                        82. -
                                                                                                                                                        83. model/screenless/notifications
                                                                                                                                                        84. -
                                                                                                                                                        85. model/screenless/pay_po_payment
                                                                                                                                                        86. -
                                                                                                                                                        87. model/screenless/payment_details
                                                                                                                                                        88. -
                                                                                                                                                        89. model/screenless/raty_pekao_payment
                                                                                                                                                        90. -
                                                                                                                                                        91. model/screenless/recursive
                                                                                                                                                        92. -
                                                                                                                                                        93. model/screenless/redirects
                                                                                                                                                        94. -
                                                                                                                                                        95. model/screenless/screenless_payment
                                                                                                                                                        96. -
                                                                                                                                                        97. model/screenless/transfer_method
                                                                                                                                                        98. -
                                                                                                                                                        99. model/screenless/transfer_payment
                                                                                                                                                        100. -
                                                                                                                                                        101. model/tokenization/tokenization
                                                                                                                                                        102. -
                                                                                                                                                        103. model/tpay_configuration
                                                                                                                                                        104. -
                                                                                                                                                        105. model/tpay_environment
                                                                                                                                                        106. -
                                                                                                                                                        107. model/transaction/single_transaction
                                                                                                                                                        108. -
                                                                                                                                                        109. model/transaction/token_payment
                                                                                                                                                        110. -
                                                                                                                                                        111. model/transaction/transaction
                                                                                                                                                        112. -
                                                                                                                                                        113. model/wallet_configuration
                                                                                                                                                        114. -
                                                                                                                                                        115. tpay_button
                                                                                                                                                        116. -
                                                                                                                                                        117. tpay_method_channel
                                                                                                                                                        118. -
                                                                                                                                                        119. tpay_platform_interface
                                                                                                                                                        120. -
                                                                                                                                                        121. util/google_pay_configuration_util
                                                                                                                                                        122. -
                                                                                                                                                        123. util/google_pay_util
                                                                                                                                                        124. -
                                                                                                                                                        125. util/payment_channels_util
                                                                                                                                                        126. -
                                                                                                                                                        127. util/result_util
                                                                                                                                                        128. -
                                                                                                                                                        129. util/screenless_result_util
                                                                                                                                                        130. +
                                                                                                                                                        131. model/apple_pay_configuration
                                                                                                                                                        132. +
                                                                                                                                                        133. model/certificate_pinning_configuration
                                                                                                                                                        134. +
                                                                                                                                                        135. model/google_pay_configuration
                                                                                                                                                        136. +
                                                                                                                                                        137. model/language/language
                                                                                                                                                        138. +
                                                                                                                                                        139. model/language/languages
                                                                                                                                                        140. +
                                                                                                                                                        141. model/language/localized_string
                                                                                                                                                        142. +
                                                                                                                                                        143. model/merchant/merchant
                                                                                                                                                        144. +
                                                                                                                                                        145. model/merchant/merchant_authorization
                                                                                                                                                        146. +
                                                                                                                                                        147. model/merchant/merchant_details
                                                                                                                                                        148. +
                                                                                                                                                        149. model/payer/payer
                                                                                                                                                        150. +
                                                                                                                                                        151. model/payer/payer_address
                                                                                                                                                        152. +
                                                                                                                                                        153. model/payer/payer_context
                                                                                                                                                        154. +
                                                                                                                                                        155. model/paymentChannel/payment_channel
                                                                                                                                                        156. +
                                                                                                                                                        157. model/paymentChannel/payment_constraint
                                                                                                                                                        158. +
                                                                                                                                                        159. model/paymentChannel/payment_group
                                                                                                                                                        160. +
                                                                                                                                                        161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                        162. +
                                                                                                                                                        163. model/paymentMethod/blik_alias
                                                                                                                                                        164. +
                                                                                                                                                        165. model/paymentMethod/credit_card_brand
                                                                                                                                                        166. +
                                                                                                                                                        167. model/paymentMethod/digital_wallet
                                                                                                                                                        168. +
                                                                                                                                                        169. model/paymentMethod/installment_payment
                                                                                                                                                        170. +
                                                                                                                                                        171. model/paymentMethod/payment_method
                                                                                                                                                        172. +
                                                                                                                                                        173. model/paymentMethod/payment_methods
                                                                                                                                                        174. +
                                                                                                                                                        175. model/paymentMethod/tokenized_card
                                                                                                                                                        176. +
                                                                                                                                                        177. model/result/google_pay_configure_result
                                                                                                                                                        178. +
                                                                                                                                                        179. model/result/google_pay_open_result
                                                                                                                                                        180. +
                                                                                                                                                        181. model/result/payment_channels_result
                                                                                                                                                        182. +
                                                                                                                                                        183. model/result/result
                                                                                                                                                        184. +
                                                                                                                                                        185. model/result/screenless_result
                                                                                                                                                        186. +
                                                                                                                                                        187. model/screenless/ambiguous_alias
                                                                                                                                                        188. +
                                                                                                                                                        189. model/screenless/ambiguous_blik_payment
                                                                                                                                                        190. +
                                                                                                                                                        191. model/screenless/apple_pay_payment
                                                                                                                                                        192. +
                                                                                                                                                        193. model/screenless/blik_payment
                                                                                                                                                        194. +
                                                                                                                                                        195. model/screenless/callbacks
                                                                                                                                                        196. +
                                                                                                                                                        197. model/screenless/credit_card
                                                                                                                                                        198. +
                                                                                                                                                        199. model/screenless/credit_card_config
                                                                                                                                                        200. +
                                                                                                                                                        201. model/screenless/credit_card_payment
                                                                                                                                                        202. +
                                                                                                                                                        203. model/screenless/expiration_date
                                                                                                                                                        204. +
                                                                                                                                                        205. model/screenless/google_pay_environment
                                                                                                                                                        206. +
                                                                                                                                                        207. model/screenless/google_pay_payment
                                                                                                                                                        208. +
                                                                                                                                                        209. model/screenless/google_pay_utils_configuration
                                                                                                                                                        210. +
                                                                                                                                                        211. model/screenless/notifications
                                                                                                                                                        212. +
                                                                                                                                                        213. model/screenless/pay_po_payment
                                                                                                                                                        214. +
                                                                                                                                                        215. model/screenless/payment_details
                                                                                                                                                        216. +
                                                                                                                                                        217. model/screenless/raty_pekao_payment
                                                                                                                                                        218. +
                                                                                                                                                        219. model/screenless/recursive
                                                                                                                                                        220. +
                                                                                                                                                        221. model/screenless/redirects
                                                                                                                                                        222. +
                                                                                                                                                        223. model/screenless/screenless_payment
                                                                                                                                                        224. +
                                                                                                                                                        225. model/screenless/transfer_method
                                                                                                                                                        226. +
                                                                                                                                                        227. model/screenless/transfer_payment
                                                                                                                                                        228. +
                                                                                                                                                        229. model/tokenization/tokenization
                                                                                                                                                        230. +
                                                                                                                                                        231. model/tpay_configuration
                                                                                                                                                        232. +
                                                                                                                                                        233. model/tpay_environment
                                                                                                                                                        234. +
                                                                                                                                                        235. model/transaction/single_transaction
                                                                                                                                                        236. +
                                                                                                                                                        237. model/transaction/token_payment
                                                                                                                                                        238. +
                                                                                                                                                        239. model/transaction/transaction
                                                                                                                                                        240. +
                                                                                                                                                        241. model/wallet_configuration
                                                                                                                                                        242. +
                                                                                                                                                        243. tpay_button
                                                                                                                                                        244. +
                                                                                                                                                        245. tpay_method_channel
                                                                                                                                                        246. +
                                                                                                                                                        247. tpay_platform_interface
                                                                                                                                                        248. +
                                                                                                                                                        249. util/google_pay_configuration_util
                                                                                                                                                        250. +
                                                                                                                                                        251. util/google_pay_util
                                                                                                                                                        252. +
                                                                                                                                                        253. util/payment_channels_util
                                                                                                                                                        254. +
                                                                                                                                                        255. util/result_util
                                                                                                                                                        256. +
                                                                                                                                                        257. util/screenless_result_util
                                                                                                                                                        @@ -177,7 +174,7 @@
                                                                                                                                                        blik_payment library
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_blik_payment/model_screenless_blik_payment-library-sidebar.html b/doc/model_screenless_blik_payment/model_screenless_blik_payment-library-sidebar.html index 65a46cdf..ecb21742 100644 --- a/doc/model_screenless_blik_payment/model_screenless_blik_payment-library-sidebar.html +++ b/doc/model_screenless_blik_payment/model_screenless_blik_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                          -
                                                                                                                                                        1. Classes
                                                                                                                                                        2. +
                                                                                                                                                        3. Classes
                                                                                                                                                        4. BLIKPayment
                                                                                                                                                        5. diff --git a/doc/model_screenless_blik_payment/model_screenless_blik_payment-library.html b/doc/model_screenless_blik_payment/model_screenless_blik_payment-library.html index 3b27d2d4..a8380f61 100644 --- a/doc/model_screenless_blik_payment/model_screenless_blik_payment-library.html +++ b/doc/model_screenless_blik_payment/model_screenless_blik_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                          New URL

                                                                                                                                                          +

                                                                                                                                                          New URL

                                                                                                                                                          \ No newline at end of file diff --git a/doc/model_screenless_callbacks/Callbacks-class-sidebar.html b/doc/model_screenless_callbacks/Callbacks-class-sidebar.html index 2f64f326..5f3f37f7 100644 --- a/doc/model_screenless_callbacks/Callbacks-class-sidebar.html +++ b/doc/model_screenless_callbacks/Callbacks-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                          1. Constructors
                                                                                                                                                          2. -
                                                                                                                                                          3. Callbacks
                                                                                                                                                          4. +
                                                                                                                                                          5. new
                                                                                                                                                          6. fromJson
                                                                                                                                                          7. diff --git a/doc/model_screenless_callbacks/Callbacks-class.html b/doc/model_screenless_callbacks/Callbacks-class.html index fda94795..22ef5589 100644 --- a/doc/model_screenless_callbacks/Callbacks-class.html +++ b/doc/model_screenless_callbacks/Callbacks-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                            Callbacks
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Callbacks class
                                                                                                                                                            Annotations
                                                                                                                                                            @@ -87,7 +84,7 @@

                                                                                                                                                            Callbacks class

                                                                                                                                                            Constructors

                                                                                                                                                            -
                                                                                                                                                            +
                                                                                                                                                            Callbacks({Redirects? redirects, Notifications? notifications})
                                                                                                                                                            @@ -241,7 +238,7 @@

                                                                                                                                                            Operators

                                                                                                                                                            @@ -254,7 +251,7 @@
                                                                                                                                                            callbacks library
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/Callbacks/Callbacks.fromJson.html b/doc/model_screenless_callbacks/Callbacks/Callbacks.fromJson.html index 6f0fde37..08a343a5 100644 --- a/doc/model_screenless_callbacks/Callbacks/Callbacks.fromJson.html +++ b/doc/model_screenless_callbacks/Callbacks/Callbacks.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Implementation

                                                                                                                                                            @@ -94,7 +91,7 @@
                                                                                                                                                            Callbacks class
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/Callbacks/Callbacks.html b/doc/model_screenless_callbacks/Callbacks/Callbacks.html index 347df734..aaccda71 100644 --- a/doc/model_screenless_callbacks/Callbacks/Callbacks.html +++ b/doc/model_screenless_callbacks/Callbacks/Callbacks.html @@ -4,8 +4,8 @@ - - Callbacks constructor - Callbacks - callbacks library - Dart API + + Callbacks.new constructor - Callbacks - callbacks library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                            Callbacks
                                                                                                                                                            +
                                                                                                                                                            Callbacks.new
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Implementation
                                                                                                                                                            Callbacks class
                                                                                                                                                            @@ -98,7 +95,7 @@
                                                                                                                                                            Callbacks class
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/Callbacks/notifications.html b/doc/model_screenless_callbacks/Callbacks/notifications.html index c48b4392..d8cfd41e 100644 --- a/doc/model_screenless_callbacks/Callbacks/notifications.html +++ b/doc/model_screenless_callbacks/Callbacks/notifications.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                                            Callbacks class
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/Callbacks/redirects.html b/doc/model_screenless_callbacks/Callbacks/redirects.html index b25d74a5..4bff9195 100644 --- a/doc/model_screenless_callbacks/Callbacks/redirects.html +++ b/doc/model_screenless_callbacks/Callbacks/redirects.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                                            Callbacks class
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/Callbacks/toJson.html b/doc/model_screenless_callbacks/Callbacks/toJson.html index 9965c287..686f5c45 100644 --- a/doc/model_screenless_callbacks/Callbacks/toJson.html +++ b/doc/model_screenless_callbacks/Callbacks/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                                            Callbacks class
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/index.html b/doc/model_screenless_callbacks/index.html index ac9c75aa..1195ffdb 100644 --- a/doc/model_screenless_callbacks/index.html +++ b/doc/model_screenless_callbacks/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Classes
                                                                                                                                                            flutter_tpay package
                                                                                                                                                            1. Libraries
                                                                                                                                                            2. -
                                                                                                                                                            3. model/apple_pay_configuration
                                                                                                                                                            4. -
                                                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                                                            6. -
                                                                                                                                                            7. model/google_pay_configuration
                                                                                                                                                            8. -
                                                                                                                                                            9. model/language/language
                                                                                                                                                            10. -
                                                                                                                                                            11. model/language/languages
                                                                                                                                                            12. -
                                                                                                                                                            13. model/language/localized_string
                                                                                                                                                            14. -
                                                                                                                                                            15. model/merchant/merchant
                                                                                                                                                            16. -
                                                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                                                            18. -
                                                                                                                                                            19. model/merchant/merchant_details
                                                                                                                                                            20. -
                                                                                                                                                            21. model/payer/payer
                                                                                                                                                            22. -
                                                                                                                                                            23. model/payer/payer_address
                                                                                                                                                            24. -
                                                                                                                                                            25. model/payer/payer_context
                                                                                                                                                            26. -
                                                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                                                            28. -
                                                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                                                            30. -
                                                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                                                            32. -
                                                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                            34. -
                                                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                                                            36. -
                                                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                                                            38. -
                                                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                                                            40. -
                                                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                                                            42. -
                                                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                                                            44. -
                                                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                                                            46. -
                                                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                                                            48. -
                                                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                                                            50. -
                                                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                                                            52. -
                                                                                                                                                            53. model/result/payment_channels_result
                                                                                                                                                            54. -
                                                                                                                                                            55. model/result/result
                                                                                                                                                            56. -
                                                                                                                                                            57. model/result/screenless_result
                                                                                                                                                            58. -
                                                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                                                            60. -
                                                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                                                            62. -
                                                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                                                            64. -
                                                                                                                                                            65. model/screenless/blik_payment
                                                                                                                                                            66. -
                                                                                                                                                            67. model/screenless/callbacks
                                                                                                                                                            68. -
                                                                                                                                                            69. model/screenless/credit_card
                                                                                                                                                            70. -
                                                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                                                            72. -
                                                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                                                            74. -
                                                                                                                                                            75. model/screenless/expiration_date
                                                                                                                                                            76. -
                                                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                                                            78. -
                                                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                                                            80. -
                                                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                                                            82. -
                                                                                                                                                            83. model/screenless/notifications
                                                                                                                                                            84. -
                                                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                                                            86. -
                                                                                                                                                            87. model/screenless/payment_details
                                                                                                                                                            88. -
                                                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                                                            90. -
                                                                                                                                                            91. model/screenless/recursive
                                                                                                                                                            92. -
                                                                                                                                                            93. model/screenless/redirects
                                                                                                                                                            94. -
                                                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                                                            96. -
                                                                                                                                                            97. model/screenless/transfer_method
                                                                                                                                                            98. -
                                                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                                                            100. -
                                                                                                                                                            101. model/tokenization/tokenization
                                                                                                                                                            102. -
                                                                                                                                                            103. model/tpay_configuration
                                                                                                                                                            104. -
                                                                                                                                                            105. model/tpay_environment
                                                                                                                                                            106. -
                                                                                                                                                            107. model/transaction/single_transaction
                                                                                                                                                            108. -
                                                                                                                                                            109. model/transaction/token_payment
                                                                                                                                                            110. -
                                                                                                                                                            111. model/transaction/transaction
                                                                                                                                                            112. -
                                                                                                                                                            113. model/wallet_configuration
                                                                                                                                                            114. -
                                                                                                                                                            115. tpay_button
                                                                                                                                                            116. -
                                                                                                                                                            117. tpay_method_channel
                                                                                                                                                            118. -
                                                                                                                                                            119. tpay_platform_interface
                                                                                                                                                            120. -
                                                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                                                            122. -
                                                                                                                                                            123. util/google_pay_util
                                                                                                                                                            124. -
                                                                                                                                                            125. util/payment_channels_util
                                                                                                                                                            126. -
                                                                                                                                                            127. util/result_util
                                                                                                                                                            128. -
                                                                                                                                                            129. util/screenless_result_util
                                                                                                                                                            130. +
                                                                                                                                                            131. model/apple_pay_configuration
                                                                                                                                                            132. +
                                                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                                                            134. +
                                                                                                                                                            135. model/google_pay_configuration
                                                                                                                                                            136. +
                                                                                                                                                            137. model/language/language
                                                                                                                                                            138. +
                                                                                                                                                            139. model/language/languages
                                                                                                                                                            140. +
                                                                                                                                                            141. model/language/localized_string
                                                                                                                                                            142. +
                                                                                                                                                            143. model/merchant/merchant
                                                                                                                                                            144. +
                                                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                                                            146. +
                                                                                                                                                            147. model/merchant/merchant_details
                                                                                                                                                            148. +
                                                                                                                                                            149. model/payer/payer
                                                                                                                                                            150. +
                                                                                                                                                            151. model/payer/payer_address
                                                                                                                                                            152. +
                                                                                                                                                            153. model/payer/payer_context
                                                                                                                                                            154. +
                                                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                                                            156. +
                                                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                                                            158. +
                                                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                                                            160. +
                                                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                            162. +
                                                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                                                            164. +
                                                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                                                            166. +
                                                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                                                            168. +
                                                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                                                            170. +
                                                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                                                            172. +
                                                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                                                            174. +
                                                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                                                            176. +
                                                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                                                            178. +
                                                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                                                            180. +
                                                                                                                                                            181. model/result/payment_channels_result
                                                                                                                                                            182. +
                                                                                                                                                            183. model/result/result
                                                                                                                                                            184. +
                                                                                                                                                            185. model/result/screenless_result
                                                                                                                                                            186. +
                                                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                                                            188. +
                                                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                                                            190. +
                                                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                                                            192. +
                                                                                                                                                            193. model/screenless/blik_payment
                                                                                                                                                            194. +
                                                                                                                                                            195. model/screenless/callbacks
                                                                                                                                                            196. +
                                                                                                                                                            197. model/screenless/credit_card
                                                                                                                                                            198. +
                                                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                                                            200. +
                                                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                                                            202. +
                                                                                                                                                            203. model/screenless/expiration_date
                                                                                                                                                            204. +
                                                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                                                            206. +
                                                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                                                            208. +
                                                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                                                            210. +
                                                                                                                                                            211. model/screenless/notifications
                                                                                                                                                            212. +
                                                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                                                            214. +
                                                                                                                                                            215. model/screenless/payment_details
                                                                                                                                                            216. +
                                                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                                                            218. +
                                                                                                                                                            219. model/screenless/recursive
                                                                                                                                                            220. +
                                                                                                                                                            221. model/screenless/redirects
                                                                                                                                                            222. +
                                                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                                                            224. +
                                                                                                                                                            225. model/screenless/transfer_method
                                                                                                                                                            226. +
                                                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                                                            228. +
                                                                                                                                                            229. model/tokenization/tokenization
                                                                                                                                                            230. +
                                                                                                                                                            231. model/tpay_configuration
                                                                                                                                                            232. +
                                                                                                                                                            233. model/tpay_environment
                                                                                                                                                            234. +
                                                                                                                                                            235. model/transaction/single_transaction
                                                                                                                                                            236. +
                                                                                                                                                            237. model/transaction/token_payment
                                                                                                                                                            238. +
                                                                                                                                                            239. model/transaction/transaction
                                                                                                                                                            240. +
                                                                                                                                                            241. model/wallet_configuration
                                                                                                                                                            242. +
                                                                                                                                                            243. tpay_button
                                                                                                                                                            244. +
                                                                                                                                                            245. tpay_method_channel
                                                                                                                                                            246. +
                                                                                                                                                            247. tpay_platform_interface
                                                                                                                                                            248. +
                                                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                                                            250. +
                                                                                                                                                            251. util/google_pay_util
                                                                                                                                                            252. +
                                                                                                                                                            253. util/payment_channels_util
                                                                                                                                                            254. +
                                                                                                                                                            255. util/result_util
                                                                                                                                                            256. +
                                                                                                                                                            257. util/screenless_result_util
                                                                                                                                                            @@ -177,7 +174,7 @@
                                                                                                                                                            callbacks library
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_callbacks/model_screenless_callbacks-library-sidebar.html b/doc/model_screenless_callbacks/model_screenless_callbacks-library-sidebar.html index 3090cdeb..f04d25cc 100644 --- a/doc/model_screenless_callbacks/model_screenless_callbacks-library-sidebar.html +++ b/doc/model_screenless_callbacks/model_screenless_callbacks-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                              -
                                                                                                                                                            1. Classes
                                                                                                                                                            2. +
                                                                                                                                                            3. Classes
                                                                                                                                                            4. Callbacks
                                                                                                                                                            5. diff --git a/doc/model_screenless_callbacks/model_screenless_callbacks-library.html b/doc/model_screenless_callbacks/model_screenless_callbacks-library.html index 2c57ab4d..9ad1ce43 100644 --- a/doc/model_screenless_callbacks/model_screenless_callbacks-library.html +++ b/doc/model_screenless_callbacks/model_screenless_callbacks-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                              New URL

                                                                                                                                                              +

                                                                                                                                                              New URL

                                                                                                                                                              \ No newline at end of file diff --git a/doc/model_screenless_credit_card/CreditCard-class-sidebar.html b/doc/model_screenless_credit_card/CreditCard-class-sidebar.html index e2079222..a1d5c79d 100644 --- a/doc/model_screenless_credit_card/CreditCard-class-sidebar.html +++ b/doc/model_screenless_credit_card/CreditCard-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                              1. Constructors
                                                                                                                                                              2. -
                                                                                                                                                              3. CreditCard
                                                                                                                                                              4. +
                                                                                                                                                              5. new
                                                                                                                                                              6. fromJson
                                                                                                                                                              7. diff --git a/doc/model_screenless_credit_card/CreditCard-class.html b/doc/model_screenless_credit_card/CreditCard-class.html index 9c19a199..dd350e5e 100644 --- a/doc/model_screenless_credit_card/CreditCard-class.html +++ b/doc/model_screenless_credit_card/CreditCard-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                CreditCard
                                                                                                                                                                -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                CreditCard class
                                                                                                                                                                Annotations
                                                                                                                                                                @@ -87,7 +84,7 @@

                                                                                                                                                                CreditCard class

                                                                                                                                                                Constructors

                                                                                                                                                                -
                                                                                                                                                                +
                                                                                                                                                                CreditCard({required String cardNumber, required ExpirationDate expiryDate, required String cvv, required CreditCardConfig config})
                                                                                                                                                                @@ -265,7 +262,7 @@

                                                                                                                                                                Operators

                                                                                                                                                                @@ -278,7 +275,7 @@
                                                                                                                                                                credit_card library
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/CreditCard.fromJson.html b/doc/model_screenless_credit_card/CreditCard/CreditCard.fromJson.html index 47dfd81a..0d54a31d 100644 --- a/doc/model_screenless_credit_card/CreditCard/CreditCard.fromJson.html +++ b/doc/model_screenless_credit_card/CreditCard/CreditCard.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation

                                                                                                                                                                @@ -94,7 +91,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/CreditCard.html b/doc/model_screenless_credit_card/CreditCard/CreditCard.html index 9f9263d0..c7cc7ec1 100644 --- a/doc/model_screenless_credit_card/CreditCard/CreditCard.html +++ b/doc/model_screenless_credit_card/CreditCard/CreditCard.html @@ -4,8 +4,8 @@ - - CreditCard constructor - CreditCard - credit_card library - Dart API + + CreditCard.new constructor - CreditCard - credit_card library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                                CreditCard
                                                                                                                                                                +
                                                                                                                                                                CreditCard.new
                                                                                                                                                                -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation
                                                                                                                                                                CreditCard class
                                                                                                                                                                @@ -102,7 +99,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/cardNumber.html b/doc/model_screenless_credit_card/CreditCard/cardNumber.html index 07199b95..7b8604b1 100644 --- a/doc/model_screenless_credit_card/CreditCard/cardNumber.html +++ b/doc/model_screenless_credit_card/CreditCard/cardNumber.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/config.html b/doc/model_screenless_credit_card/CreditCard/config.html index 132fb14d..dede722f 100644 --- a/doc/model_screenless_credit_card/CreditCard/config.html +++ b/doc/model_screenless_credit_card/CreditCard/config.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/cvv.html b/doc/model_screenless_credit_card/CreditCard/cvv.html index ee566e83..b98f3092 100644 --- a/doc/model_screenless_credit_card/CreditCard/cvv.html +++ b/doc/model_screenless_credit_card/CreditCard/cvv.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/expiryDate.html b/doc/model_screenless_credit_card/CreditCard/expiryDate.html index 620f69fe..4b068d9e 100644 --- a/doc/model_screenless_credit_card/CreditCard/expiryDate.html +++ b/doc/model_screenless_credit_card/CreditCard/expiryDate.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/CreditCard/toJson.html b/doc/model_screenless_credit_card/CreditCard/toJson.html index 98a9ae31..5e270c2b 100644 --- a/doc/model_screenless_credit_card/CreditCard/toJson.html +++ b/doc/model_screenless_credit_card/CreditCard/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                CreditCard class
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/index.html b/doc/model_screenless_credit_card/index.html index 29e0875f..c60ad6e5 100644 --- a/doc/model_screenless_credit_card/index.html +++ b/doc/model_screenless_credit_card/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                                - -
                                                                                                                                                                +
                                                                                                                                                                Classes
                                                                                                                                                                flutter_tpay package
                                                                                                                                                                1. Libraries
                                                                                                                                                                2. -
                                                                                                                                                                3. model/apple_pay_configuration
                                                                                                                                                                4. -
                                                                                                                                                                5. model/certificate_pinning_configuration
                                                                                                                                                                6. -
                                                                                                                                                                7. model/google_pay_configuration
                                                                                                                                                                8. -
                                                                                                                                                                9. model/language/language
                                                                                                                                                                10. -
                                                                                                                                                                11. model/language/languages
                                                                                                                                                                12. -
                                                                                                                                                                13. model/language/localized_string
                                                                                                                                                                14. -
                                                                                                                                                                15. model/merchant/merchant
                                                                                                                                                                16. -
                                                                                                                                                                17. model/merchant/merchant_authorization
                                                                                                                                                                18. -
                                                                                                                                                                19. model/merchant/merchant_details
                                                                                                                                                                20. -
                                                                                                                                                                21. model/payer/payer
                                                                                                                                                                22. -
                                                                                                                                                                23. model/payer/payer_address
                                                                                                                                                                24. -
                                                                                                                                                                25. model/payer/payer_context
                                                                                                                                                                26. -
                                                                                                                                                                27. model/paymentChannel/payment_channel
                                                                                                                                                                28. -
                                                                                                                                                                29. model/paymentChannel/payment_constraint
                                                                                                                                                                30. -
                                                                                                                                                                31. model/paymentChannel/payment_group
                                                                                                                                                                32. -
                                                                                                                                                                33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                34. -
                                                                                                                                                                35. model/paymentMethod/blik_alias
                                                                                                                                                                36. -
                                                                                                                                                                37. model/paymentMethod/credit_card_brand
                                                                                                                                                                38. -
                                                                                                                                                                39. model/paymentMethod/digital_wallet
                                                                                                                                                                40. -
                                                                                                                                                                41. model/paymentMethod/installment_payment
                                                                                                                                                                42. -
                                                                                                                                                                43. model/paymentMethod/payment_method
                                                                                                                                                                44. -
                                                                                                                                                                45. model/paymentMethod/payment_methods
                                                                                                                                                                46. -
                                                                                                                                                                47. model/paymentMethod/tokenized_card
                                                                                                                                                                48. -
                                                                                                                                                                49. model/result/google_pay_configure_result
                                                                                                                                                                50. -
                                                                                                                                                                51. model/result/google_pay_open_result
                                                                                                                                                                52. -
                                                                                                                                                                53. model/result/payment_channels_result
                                                                                                                                                                54. -
                                                                                                                                                                55. model/result/result
                                                                                                                                                                56. -
                                                                                                                                                                57. model/result/screenless_result
                                                                                                                                                                58. -
                                                                                                                                                                59. model/screenless/ambiguous_alias
                                                                                                                                                                60. -
                                                                                                                                                                61. model/screenless/ambiguous_blik_payment
                                                                                                                                                                62. -
                                                                                                                                                                63. model/screenless/apple_pay_payment
                                                                                                                                                                64. -
                                                                                                                                                                65. model/screenless/blik_payment
                                                                                                                                                                66. -
                                                                                                                                                                67. model/screenless/callbacks
                                                                                                                                                                68. -
                                                                                                                                                                69. model/screenless/credit_card
                                                                                                                                                                70. -
                                                                                                                                                                71. model/screenless/credit_card_config
                                                                                                                                                                72. -
                                                                                                                                                                73. model/screenless/credit_card_payment
                                                                                                                                                                74. -
                                                                                                                                                                75. model/screenless/expiration_date
                                                                                                                                                                76. -
                                                                                                                                                                77. model/screenless/google_pay_environment
                                                                                                                                                                78. -
                                                                                                                                                                79. model/screenless/google_pay_payment
                                                                                                                                                                80. -
                                                                                                                                                                81. model/screenless/google_pay_utils_configuration
                                                                                                                                                                82. -
                                                                                                                                                                83. model/screenless/notifications
                                                                                                                                                                84. -
                                                                                                                                                                85. model/screenless/pay_po_payment
                                                                                                                                                                86. -
                                                                                                                                                                87. model/screenless/payment_details
                                                                                                                                                                88. -
                                                                                                                                                                89. model/screenless/raty_pekao_payment
                                                                                                                                                                90. -
                                                                                                                                                                91. model/screenless/recursive
                                                                                                                                                                92. -
                                                                                                                                                                93. model/screenless/redirects
                                                                                                                                                                94. -
                                                                                                                                                                95. model/screenless/screenless_payment
                                                                                                                                                                96. -
                                                                                                                                                                97. model/screenless/transfer_method
                                                                                                                                                                98. -
                                                                                                                                                                99. model/screenless/transfer_payment
                                                                                                                                                                100. -
                                                                                                                                                                101. model/tokenization/tokenization
                                                                                                                                                                102. -
                                                                                                                                                                103. model/tpay_configuration
                                                                                                                                                                104. -
                                                                                                                                                                105. model/tpay_environment
                                                                                                                                                                106. -
                                                                                                                                                                107. model/transaction/single_transaction
                                                                                                                                                                108. -
                                                                                                                                                                109. model/transaction/token_payment
                                                                                                                                                                110. -
                                                                                                                                                                111. model/transaction/transaction
                                                                                                                                                                112. -
                                                                                                                                                                113. model/wallet_configuration
                                                                                                                                                                114. -
                                                                                                                                                                115. tpay_button
                                                                                                                                                                116. -
                                                                                                                                                                117. tpay_method_channel
                                                                                                                                                                118. -
                                                                                                                                                                119. tpay_platform_interface
                                                                                                                                                                120. -
                                                                                                                                                                121. util/google_pay_configuration_util
                                                                                                                                                                122. -
                                                                                                                                                                123. util/google_pay_util
                                                                                                                                                                124. -
                                                                                                                                                                125. util/payment_channels_util
                                                                                                                                                                126. -
                                                                                                                                                                127. util/result_util
                                                                                                                                                                128. -
                                                                                                                                                                129. util/screenless_result_util
                                                                                                                                                                130. +
                                                                                                                                                                131. model/apple_pay_configuration
                                                                                                                                                                132. +
                                                                                                                                                                133. model/certificate_pinning_configuration
                                                                                                                                                                134. +
                                                                                                                                                                135. model/google_pay_configuration
                                                                                                                                                                136. +
                                                                                                                                                                137. model/language/language
                                                                                                                                                                138. +
                                                                                                                                                                139. model/language/languages
                                                                                                                                                                140. +
                                                                                                                                                                141. model/language/localized_string
                                                                                                                                                                142. +
                                                                                                                                                                143. model/merchant/merchant
                                                                                                                                                                144. +
                                                                                                                                                                145. model/merchant/merchant_authorization
                                                                                                                                                                146. +
                                                                                                                                                                147. model/merchant/merchant_details
                                                                                                                                                                148. +
                                                                                                                                                                149. model/payer/payer
                                                                                                                                                                150. +
                                                                                                                                                                151. model/payer/payer_address
                                                                                                                                                                152. +
                                                                                                                                                                153. model/payer/payer_context
                                                                                                                                                                154. +
                                                                                                                                                                155. model/paymentChannel/payment_channel
                                                                                                                                                                156. +
                                                                                                                                                                157. model/paymentChannel/payment_constraint
                                                                                                                                                                158. +
                                                                                                                                                                159. model/paymentChannel/payment_group
                                                                                                                                                                160. +
                                                                                                                                                                161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                162. +
                                                                                                                                                                163. model/paymentMethod/blik_alias
                                                                                                                                                                164. +
                                                                                                                                                                165. model/paymentMethod/credit_card_brand
                                                                                                                                                                166. +
                                                                                                                                                                167. model/paymentMethod/digital_wallet
                                                                                                                                                                168. +
                                                                                                                                                                169. model/paymentMethod/installment_payment
                                                                                                                                                                170. +
                                                                                                                                                                171. model/paymentMethod/payment_method
                                                                                                                                                                172. +
                                                                                                                                                                173. model/paymentMethod/payment_methods
                                                                                                                                                                174. +
                                                                                                                                                                175. model/paymentMethod/tokenized_card
                                                                                                                                                                176. +
                                                                                                                                                                177. model/result/google_pay_configure_result
                                                                                                                                                                178. +
                                                                                                                                                                179. model/result/google_pay_open_result
                                                                                                                                                                180. +
                                                                                                                                                                181. model/result/payment_channels_result
                                                                                                                                                                182. +
                                                                                                                                                                183. model/result/result
                                                                                                                                                                184. +
                                                                                                                                                                185. model/result/screenless_result
                                                                                                                                                                186. +
                                                                                                                                                                187. model/screenless/ambiguous_alias
                                                                                                                                                                188. +
                                                                                                                                                                189. model/screenless/ambiguous_blik_payment
                                                                                                                                                                190. +
                                                                                                                                                                191. model/screenless/apple_pay_payment
                                                                                                                                                                192. +
                                                                                                                                                                193. model/screenless/blik_payment
                                                                                                                                                                194. +
                                                                                                                                                                195. model/screenless/callbacks
                                                                                                                                                                196. +
                                                                                                                                                                197. model/screenless/credit_card
                                                                                                                                                                198. +
                                                                                                                                                                199. model/screenless/credit_card_config
                                                                                                                                                                200. +
                                                                                                                                                                201. model/screenless/credit_card_payment
                                                                                                                                                                202. +
                                                                                                                                                                203. model/screenless/expiration_date
                                                                                                                                                                204. +
                                                                                                                                                                205. model/screenless/google_pay_environment
                                                                                                                                                                206. +
                                                                                                                                                                207. model/screenless/google_pay_payment
                                                                                                                                                                208. +
                                                                                                                                                                209. model/screenless/google_pay_utils_configuration
                                                                                                                                                                210. +
                                                                                                                                                                211. model/screenless/notifications
                                                                                                                                                                212. +
                                                                                                                                                                213. model/screenless/pay_po_payment
                                                                                                                                                                214. +
                                                                                                                                                                215. model/screenless/payment_details
                                                                                                                                                                216. +
                                                                                                                                                                217. model/screenless/raty_pekao_payment
                                                                                                                                                                218. +
                                                                                                                                                                219. model/screenless/recursive
                                                                                                                                                                220. +
                                                                                                                                                                221. model/screenless/redirects
                                                                                                                                                                222. +
                                                                                                                                                                223. model/screenless/screenless_payment
                                                                                                                                                                224. +
                                                                                                                                                                225. model/screenless/transfer_method
                                                                                                                                                                226. +
                                                                                                                                                                227. model/screenless/transfer_payment
                                                                                                                                                                228. +
                                                                                                                                                                229. model/tokenization/tokenization
                                                                                                                                                                230. +
                                                                                                                                                                231. model/tpay_configuration
                                                                                                                                                                232. +
                                                                                                                                                                233. model/tpay_environment
                                                                                                                                                                234. +
                                                                                                                                                                235. model/transaction/single_transaction
                                                                                                                                                                236. +
                                                                                                                                                                237. model/transaction/token_payment
                                                                                                                                                                238. +
                                                                                                                                                                239. model/transaction/transaction
                                                                                                                                                                240. +
                                                                                                                                                                241. model/wallet_configuration
                                                                                                                                                                242. +
                                                                                                                                                                243. tpay_button
                                                                                                                                                                244. +
                                                                                                                                                                245. tpay_method_channel
                                                                                                                                                                246. +
                                                                                                                                                                247. tpay_platform_interface
                                                                                                                                                                248. +
                                                                                                                                                                249. util/google_pay_configuration_util
                                                                                                                                                                250. +
                                                                                                                                                                251. util/google_pay_util
                                                                                                                                                                252. +
                                                                                                                                                                253. util/payment_channels_util
                                                                                                                                                                254. +
                                                                                                                                                                255. util/result_util
                                                                                                                                                                256. +
                                                                                                                                                                257. util/screenless_result_util
                                                                                                                                                                @@ -177,7 +174,7 @@
                                                                                                                                                                credit_card library
                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                diff --git a/doc/model_screenless_credit_card/model_screenless_credit_card-library-sidebar.html b/doc/model_screenless_credit_card/model_screenless_credit_card-library-sidebar.html index 19030f56..c5cd2b77 100644 --- a/doc/model_screenless_credit_card/model_screenless_credit_card-library-sidebar.html +++ b/doc/model_screenless_credit_card/model_screenless_credit_card-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                                  -
                                                                                                                                                                1. Classes
                                                                                                                                                                2. +
                                                                                                                                                                3. Classes
                                                                                                                                                                4. CreditCard
                                                                                                                                                                5. diff --git a/doc/model_screenless_credit_card/model_screenless_credit_card-library.html b/doc/model_screenless_credit_card/model_screenless_credit_card-library.html index e73ff7ce..537b40d8 100644 --- a/doc/model_screenless_credit_card/model_screenless_credit_card-library.html +++ b/doc/model_screenless_credit_card/model_screenless_credit_card-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                                  New URL

                                                                                                                                                                  +

                                                                                                                                                                  New URL

                                                                                                                                                                  \ No newline at end of file diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig-class-sidebar.html b/doc/model_screenless_credit_card_config/CreditCardConfig-class-sidebar.html index a43d0a38..f34668a8 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig-class-sidebar.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                                  1. Constructors
                                                                                                                                                                  2. -
                                                                                                                                                                  3. CreditCardConfig
                                                                                                                                                                  4. +
                                                                                                                                                                  5. new
                                                                                                                                                                  6. fromJson
                                                                                                                                                                  7. diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig-class.html b/doc/model_screenless_credit_card_config/CreditCardConfig-class.html index ca368bdf..1f4910c4 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig-class.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                    CreditCardConfig
                                                                                                                                                                    -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    Annotations
                                                                                                                                                                    @@ -91,7 +88,7 @@

                                                                                                                                                                    CreditCardConfig class

                                                                                                                                                                    Constructors

                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    CreditCardConfig({required bool shouldSave, required String domain, String? rocText})
                                                                                                                                                                    @@ -257,7 +254,7 @@

                                                                                                                                                                    Operators

                                                                                                                                                                    @@ -270,7 +267,7 @@
                                                                                                                                                                    credit_card_config library
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.fromJson.html b/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.fromJson.html index 75fd60f7..27c9b526 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.fromJson.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Implementation

                                                                                                                                                                    @@ -94,7 +91,7 @@
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.html b/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.html index a4e1b874..65e72a5d 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.html @@ -4,8 +4,8 @@ - - CreditCardConfig constructor - CreditCardConfig - credit_card_config library - Dart API + + CreditCardConfig.new constructor - CreditCardConfig - credit_card_config library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                                    CreditCardConfig
                                                                                                                                                                    +
                                                                                                                                                                    CreditCardConfig.new
                                                                                                                                                                    -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Implementation
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    @@ -100,7 +97,7 @@
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/domain.html b/doc/model_screenless_credit_card_config/CreditCardConfig/domain.html index cbf55762..445f35c3 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig/domain.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig/domain.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/rocText.html b/doc/model_screenless_credit_card_config/CreditCardConfig/rocText.html index a81190dc..eaedf828 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig/rocText.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig/rocText.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/shouldSave.html b/doc/model_screenless_credit_card_config/CreditCardConfig/shouldSave.html index 0e820534..9a44e39a 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig/shouldSave.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig/shouldSave.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/toJson.html b/doc/model_screenless_credit_card_config/CreditCardConfig/toJson.html index 84007c16..a81c06c4 100644 --- a/doc/model_screenless_credit_card_config/CreditCardConfig/toJson.html +++ b/doc/model_screenless_credit_card_config/CreditCardConfig/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                    CreditCardConfig class
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/index.html b/doc/model_screenless_credit_card_config/index.html index 22e809d1..f798b8d3 100644 --- a/doc/model_screenless_credit_card_config/index.html +++ b/doc/model_screenless_credit_card_config/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                    +
                                                                                                                                                                    Classes
                                                                                                                                                                    flutter_tpay package
                                                                                                                                                                    1. Libraries
                                                                                                                                                                    2. -
                                                                                                                                                                    3. model/apple_pay_configuration
                                                                                                                                                                    4. -
                                                                                                                                                                    5. model/certificate_pinning_configuration
                                                                                                                                                                    6. -
                                                                                                                                                                    7. model/google_pay_configuration
                                                                                                                                                                    8. -
                                                                                                                                                                    9. model/language/language
                                                                                                                                                                    10. -
                                                                                                                                                                    11. model/language/languages
                                                                                                                                                                    12. -
                                                                                                                                                                    13. model/language/localized_string
                                                                                                                                                                    14. -
                                                                                                                                                                    15. model/merchant/merchant
                                                                                                                                                                    16. -
                                                                                                                                                                    17. model/merchant/merchant_authorization
                                                                                                                                                                    18. -
                                                                                                                                                                    19. model/merchant/merchant_details
                                                                                                                                                                    20. -
                                                                                                                                                                    21. model/payer/payer
                                                                                                                                                                    22. -
                                                                                                                                                                    23. model/payer/payer_address
                                                                                                                                                                    24. -
                                                                                                                                                                    25. model/payer/payer_context
                                                                                                                                                                    26. -
                                                                                                                                                                    27. model/paymentChannel/payment_channel
                                                                                                                                                                    28. -
                                                                                                                                                                    29. model/paymentChannel/payment_constraint
                                                                                                                                                                    30. -
                                                                                                                                                                    31. model/paymentChannel/payment_group
                                                                                                                                                                    32. -
                                                                                                                                                                    33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                    34. -
                                                                                                                                                                    35. model/paymentMethod/blik_alias
                                                                                                                                                                    36. -
                                                                                                                                                                    37. model/paymentMethod/credit_card_brand
                                                                                                                                                                    38. -
                                                                                                                                                                    39. model/paymentMethod/digital_wallet
                                                                                                                                                                    40. -
                                                                                                                                                                    41. model/paymentMethod/installment_payment
                                                                                                                                                                    42. -
                                                                                                                                                                    43. model/paymentMethod/payment_method
                                                                                                                                                                    44. -
                                                                                                                                                                    45. model/paymentMethod/payment_methods
                                                                                                                                                                    46. -
                                                                                                                                                                    47. model/paymentMethod/tokenized_card
                                                                                                                                                                    48. -
                                                                                                                                                                    49. model/result/google_pay_configure_result
                                                                                                                                                                    50. -
                                                                                                                                                                    51. model/result/google_pay_open_result
                                                                                                                                                                    52. -
                                                                                                                                                                    53. model/result/payment_channels_result
                                                                                                                                                                    54. -
                                                                                                                                                                    55. model/result/result
                                                                                                                                                                    56. -
                                                                                                                                                                    57. model/result/screenless_result
                                                                                                                                                                    58. -
                                                                                                                                                                    59. model/screenless/ambiguous_alias
                                                                                                                                                                    60. -
                                                                                                                                                                    61. model/screenless/ambiguous_blik_payment
                                                                                                                                                                    62. -
                                                                                                                                                                    63. model/screenless/apple_pay_payment
                                                                                                                                                                    64. -
                                                                                                                                                                    65. model/screenless/blik_payment
                                                                                                                                                                    66. -
                                                                                                                                                                    67. model/screenless/callbacks
                                                                                                                                                                    68. -
                                                                                                                                                                    69. model/screenless/credit_card
                                                                                                                                                                    70. -
                                                                                                                                                                    71. model/screenless/credit_card_config
                                                                                                                                                                    72. -
                                                                                                                                                                    73. model/screenless/credit_card_payment
                                                                                                                                                                    74. -
                                                                                                                                                                    75. model/screenless/expiration_date
                                                                                                                                                                    76. -
                                                                                                                                                                    77. model/screenless/google_pay_environment
                                                                                                                                                                    78. -
                                                                                                                                                                    79. model/screenless/google_pay_payment
                                                                                                                                                                    80. -
                                                                                                                                                                    81. model/screenless/google_pay_utils_configuration
                                                                                                                                                                    82. -
                                                                                                                                                                    83. model/screenless/notifications
                                                                                                                                                                    84. -
                                                                                                                                                                    85. model/screenless/pay_po_payment
                                                                                                                                                                    86. -
                                                                                                                                                                    87. model/screenless/payment_details
                                                                                                                                                                    88. -
                                                                                                                                                                    89. model/screenless/raty_pekao_payment
                                                                                                                                                                    90. -
                                                                                                                                                                    91. model/screenless/recursive
                                                                                                                                                                    92. -
                                                                                                                                                                    93. model/screenless/redirects
                                                                                                                                                                    94. -
                                                                                                                                                                    95. model/screenless/screenless_payment
                                                                                                                                                                    96. -
                                                                                                                                                                    97. model/screenless/transfer_method
                                                                                                                                                                    98. -
                                                                                                                                                                    99. model/screenless/transfer_payment
                                                                                                                                                                    100. -
                                                                                                                                                                    101. model/tokenization/tokenization
                                                                                                                                                                    102. -
                                                                                                                                                                    103. model/tpay_configuration
                                                                                                                                                                    104. -
                                                                                                                                                                    105. model/tpay_environment
                                                                                                                                                                    106. -
                                                                                                                                                                    107. model/transaction/single_transaction
                                                                                                                                                                    108. -
                                                                                                                                                                    109. model/transaction/token_payment
                                                                                                                                                                    110. -
                                                                                                                                                                    111. model/transaction/transaction
                                                                                                                                                                    112. -
                                                                                                                                                                    113. model/wallet_configuration
                                                                                                                                                                    114. -
                                                                                                                                                                    115. tpay_button
                                                                                                                                                                    116. -
                                                                                                                                                                    117. tpay_method_channel
                                                                                                                                                                    118. -
                                                                                                                                                                    119. tpay_platform_interface
                                                                                                                                                                    120. -
                                                                                                                                                                    121. util/google_pay_configuration_util
                                                                                                                                                                    122. -
                                                                                                                                                                    123. util/google_pay_util
                                                                                                                                                                    124. -
                                                                                                                                                                    125. util/payment_channels_util
                                                                                                                                                                    126. -
                                                                                                                                                                    127. util/result_util
                                                                                                                                                                    128. -
                                                                                                                                                                    129. util/screenless_result_util
                                                                                                                                                                    130. +
                                                                                                                                                                    131. model/apple_pay_configuration
                                                                                                                                                                    132. +
                                                                                                                                                                    133. model/certificate_pinning_configuration
                                                                                                                                                                    134. +
                                                                                                                                                                    135. model/google_pay_configuration
                                                                                                                                                                    136. +
                                                                                                                                                                    137. model/language/language
                                                                                                                                                                    138. +
                                                                                                                                                                    139. model/language/languages
                                                                                                                                                                    140. +
                                                                                                                                                                    141. model/language/localized_string
                                                                                                                                                                    142. +
                                                                                                                                                                    143. model/merchant/merchant
                                                                                                                                                                    144. +
                                                                                                                                                                    145. model/merchant/merchant_authorization
                                                                                                                                                                    146. +
                                                                                                                                                                    147. model/merchant/merchant_details
                                                                                                                                                                    148. +
                                                                                                                                                                    149. model/payer/payer
                                                                                                                                                                    150. +
                                                                                                                                                                    151. model/payer/payer_address
                                                                                                                                                                    152. +
                                                                                                                                                                    153. model/payer/payer_context
                                                                                                                                                                    154. +
                                                                                                                                                                    155. model/paymentChannel/payment_channel
                                                                                                                                                                    156. +
                                                                                                                                                                    157. model/paymentChannel/payment_constraint
                                                                                                                                                                    158. +
                                                                                                                                                                    159. model/paymentChannel/payment_group
                                                                                                                                                                    160. +
                                                                                                                                                                    161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                    162. +
                                                                                                                                                                    163. model/paymentMethod/blik_alias
                                                                                                                                                                    164. +
                                                                                                                                                                    165. model/paymentMethod/credit_card_brand
                                                                                                                                                                    166. +
                                                                                                                                                                    167. model/paymentMethod/digital_wallet
                                                                                                                                                                    168. +
                                                                                                                                                                    169. model/paymentMethod/installment_payment
                                                                                                                                                                    170. +
                                                                                                                                                                    171. model/paymentMethod/payment_method
                                                                                                                                                                    172. +
                                                                                                                                                                    173. model/paymentMethod/payment_methods
                                                                                                                                                                    174. +
                                                                                                                                                                    175. model/paymentMethod/tokenized_card
                                                                                                                                                                    176. +
                                                                                                                                                                    177. model/result/google_pay_configure_result
                                                                                                                                                                    178. +
                                                                                                                                                                    179. model/result/google_pay_open_result
                                                                                                                                                                    180. +
                                                                                                                                                                    181. model/result/payment_channels_result
                                                                                                                                                                    182. +
                                                                                                                                                                    183. model/result/result
                                                                                                                                                                    184. +
                                                                                                                                                                    185. model/result/screenless_result
                                                                                                                                                                    186. +
                                                                                                                                                                    187. model/screenless/ambiguous_alias
                                                                                                                                                                    188. +
                                                                                                                                                                    189. model/screenless/ambiguous_blik_payment
                                                                                                                                                                    190. +
                                                                                                                                                                    191. model/screenless/apple_pay_payment
                                                                                                                                                                    192. +
                                                                                                                                                                    193. model/screenless/blik_payment
                                                                                                                                                                    194. +
                                                                                                                                                                    195. model/screenless/callbacks
                                                                                                                                                                    196. +
                                                                                                                                                                    197. model/screenless/credit_card
                                                                                                                                                                    198. +
                                                                                                                                                                    199. model/screenless/credit_card_config
                                                                                                                                                                    200. +
                                                                                                                                                                    201. model/screenless/credit_card_payment
                                                                                                                                                                    202. +
                                                                                                                                                                    203. model/screenless/expiration_date
                                                                                                                                                                    204. +
                                                                                                                                                                    205. model/screenless/google_pay_environment
                                                                                                                                                                    206. +
                                                                                                                                                                    207. model/screenless/google_pay_payment
                                                                                                                                                                    208. +
                                                                                                                                                                    209. model/screenless/google_pay_utils_configuration
                                                                                                                                                                    210. +
                                                                                                                                                                    211. model/screenless/notifications
                                                                                                                                                                    212. +
                                                                                                                                                                    213. model/screenless/pay_po_payment
                                                                                                                                                                    214. +
                                                                                                                                                                    215. model/screenless/payment_details
                                                                                                                                                                    216. +
                                                                                                                                                                    217. model/screenless/raty_pekao_payment
                                                                                                                                                                    218. +
                                                                                                                                                                    219. model/screenless/recursive
                                                                                                                                                                    220. +
                                                                                                                                                                    221. model/screenless/redirects
                                                                                                                                                                    222. +
                                                                                                                                                                    223. model/screenless/screenless_payment
                                                                                                                                                                    224. +
                                                                                                                                                                    225. model/screenless/transfer_method
                                                                                                                                                                    226. +
                                                                                                                                                                    227. model/screenless/transfer_payment
                                                                                                                                                                    228. +
                                                                                                                                                                    229. model/tokenization/tokenization
                                                                                                                                                                    230. +
                                                                                                                                                                    231. model/tpay_configuration
                                                                                                                                                                    232. +
                                                                                                                                                                    233. model/tpay_environment
                                                                                                                                                                    234. +
                                                                                                                                                                    235. model/transaction/single_transaction
                                                                                                                                                                    236. +
                                                                                                                                                                    237. model/transaction/token_payment
                                                                                                                                                                    238. +
                                                                                                                                                                    239. model/transaction/transaction
                                                                                                                                                                    240. +
                                                                                                                                                                    241. model/wallet_configuration
                                                                                                                                                                    242. +
                                                                                                                                                                    243. tpay_button
                                                                                                                                                                    244. +
                                                                                                                                                                    245. tpay_method_channel
                                                                                                                                                                    246. +
                                                                                                                                                                    247. tpay_platform_interface
                                                                                                                                                                    248. +
                                                                                                                                                                    249. util/google_pay_configuration_util
                                                                                                                                                                    250. +
                                                                                                                                                                    251. util/google_pay_util
                                                                                                                                                                    252. +
                                                                                                                                                                    253. util/payment_channels_util
                                                                                                                                                                    254. +
                                                                                                                                                                    255. util/result_util
                                                                                                                                                                    256. +
                                                                                                                                                                    257. util/screenless_result_util
                                                                                                                                                                    @@ -177,7 +174,7 @@
                                                                                                                                                                    credit_card_config library
                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                    diff --git a/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library-sidebar.html b/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library-sidebar.html index 6e378fc7..cc80a6e0 100644 --- a/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library-sidebar.html +++ b/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                                      -
                                                                                                                                                                    1. Classes
                                                                                                                                                                    2. +
                                                                                                                                                                    3. Classes
                                                                                                                                                                    4. CreditCardConfig
                                                                                                                                                                    5. diff --git a/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library.html b/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library.html index 82326384..e4699ae4 100644 --- a/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library.html +++ b/doc/model_screenless_credit_card_config/model_screenless_credit_card_config-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                                      New URL

                                                                                                                                                                      +

                                                                                                                                                                      New URL

                                                                                                                                                                      \ No newline at end of file diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment-class-sidebar.html b/doc/model_screenless_credit_card_payment/CreditCardPayment-class-sidebar.html index a6cb9fab..fe45f6f4 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment-class-sidebar.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                                      1. Constructors
                                                                                                                                                                      2. -
                                                                                                                                                                      3. CreditCardPayment
                                                                                                                                                                      4. +
                                                                                                                                                                      5. new
                                                                                                                                                                      6. fromJson
                                                                                                                                                                      7. diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment-class.html b/doc/model_screenless_credit_card_payment/CreditCardPayment-class.html index 4728da62..11303574 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment-class.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                        CreditCardPayment
                                                                                                                                                                        -
                                                                                                                                                                        - -
                                                                                                                                                                        +
                                                                                                                                                                        CreditCardPayment class
                                                                                                                                                                        Annotations
                                                                                                                                                                        @@ -101,8 +98,8 @@

                                                                                                                                                                        CreditCardPayment class

                                                                                                                                                                        Constructors

                                                                                                                                                                        -
                                                                                                                                                                        - CreditCardPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, CreditCard? creditCard, String? creditCardToken, Recursive? recursive}) +
                                                                                                                                                                        + CreditCardPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks callbacks, CreditCard? creditCard, String? creditCardToken, Recursive? recursive})
                                                                                                                                                                        @@ -124,7 +121,7 @@

                                                                                                                                                                        Properties

                                                                                                                                                                        callbacks - Callbacks? + Callbacks
                                                                                                                                                                        @@ -303,7 +300,7 @@

                                                                                                                                                                        Operators

                                                                                                                                                                        @@ -316,7 +313,7 @@
                                                                                                                                                                        credit_card_payment library
                                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                        diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.fromJson.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.fromJson.html index 39cb2082..e6cbe7ea 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.fromJson.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                        - -
                                                                                                                                                                        +
                                                                                                                                                                        Implementation

                                                                                                                                                                        @@ -94,7 +91,7 @@
                                                                                                                                                                        CreditCardPayment class
                                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                        diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.html index 74b95733..cb75d561 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.html @@ -4,8 +4,8 @@ - - CreditCardPayment constructor - CreditCardPayment - credit_card_payment library - Dart API + + CreditCardPayment.new constructor - CreditCardPayment - credit_card_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                                        CreditCardPayment
                                                                                                                                                                        +
                                                                                                                                                                        CreditCardPayment.new
                                                                                                                                                                        -
                                                                                                                                                                        - -
                                                                                                                                                                        +
                                                                                                                                                                        CreditCardPayment constructor CreditCardPayment({
                                                                                                                                                                        1. required PaymentDetails paymentDetails,
                                                                                                                                                                        2. required Payer payer,
                                                                                                                                                                        3. -
                                                                                                                                                                        4. required Callbacks? callbacks,
                                                                                                                                                                        5. +
                                                                                                                                                                        6. required Callbacks callbacks,
                                                                                                                                                                        7. CreditCard? creditCard,
                                                                                                                                                                        8. String? creditCardToken,
                                                                                                                                                                        9. Recursive? recursive,
                                                                                                                                                                        10. @@ -92,9 +89,9 @@

                                                                                                                                                                          Implementation

                                                                                                                                                                          CreditCardPayment class
                                                                                                                                                                          @@ -106,7 +103,7 @@
                                                                                                                                                                          CreditCardPayment class
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                          diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCard.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCard.html index ca064a40..fa809b34 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCard.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCard.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                          - -
                                                                                                                                                                          +
                                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                          CreditCardPayment class
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                          diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCardToken.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCardToken.html index fec98db4..abc343f6 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCardToken.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCardToken.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                          - -
                                                                                                                                                                          +
                                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                          CreditCardPayment class
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                          diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/recursive.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/recursive.html index 9f9e4661..660bb006 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment/recursive.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment/recursive.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                          - -
                                                                                                                                                                          +
                                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                          CreditCardPayment class
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                          diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/toJson.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/toJson.html index 5c0f5ac8..cd9a8b5c 100644 --- a/doc/model_screenless_credit_card_payment/CreditCardPayment/toJson.html +++ b/doc/model_screenless_credit_card_payment/CreditCardPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                          - -
                                                                                                                                                                          +
                                                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                          CreditCardPayment class
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                          diff --git a/doc/model_screenless_credit_card_payment/index.html b/doc/model_screenless_credit_card_payment/index.html index 920a1ce2..860553df 100644 --- a/doc/model_screenless_credit_card_payment/index.html +++ b/doc/model_screenless_credit_card_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                                          - -
                                                                                                                                                                          +
                                                                                                                                                                          Classes
                                                                                                                                                                          flutter_tpay package
                                                                                                                                                                          1. Libraries
                                                                                                                                                                          2. -
                                                                                                                                                                          3. model/apple_pay_configuration
                                                                                                                                                                          4. -
                                                                                                                                                                          5. model/certificate_pinning_configuration
                                                                                                                                                                          6. -
                                                                                                                                                                          7. model/google_pay_configuration
                                                                                                                                                                          8. -
                                                                                                                                                                          9. model/language/language
                                                                                                                                                                          10. -
                                                                                                                                                                          11. model/language/languages
                                                                                                                                                                          12. -
                                                                                                                                                                          13. model/language/localized_string
                                                                                                                                                                          14. -
                                                                                                                                                                          15. model/merchant/merchant
                                                                                                                                                                          16. -
                                                                                                                                                                          17. model/merchant/merchant_authorization
                                                                                                                                                                          18. -
                                                                                                                                                                          19. model/merchant/merchant_details
                                                                                                                                                                          20. -
                                                                                                                                                                          21. model/payer/payer
                                                                                                                                                                          22. -
                                                                                                                                                                          23. model/payer/payer_address
                                                                                                                                                                          24. -
                                                                                                                                                                          25. model/payer/payer_context
                                                                                                                                                                          26. -
                                                                                                                                                                          27. model/paymentChannel/payment_channel
                                                                                                                                                                          28. -
                                                                                                                                                                          29. model/paymentChannel/payment_constraint
                                                                                                                                                                          30. -
                                                                                                                                                                          31. model/paymentChannel/payment_group
                                                                                                                                                                          32. -
                                                                                                                                                                          33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                          34. -
                                                                                                                                                                          35. model/paymentMethod/blik_alias
                                                                                                                                                                          36. -
                                                                                                                                                                          37. model/paymentMethod/credit_card_brand
                                                                                                                                                                          38. -
                                                                                                                                                                          39. model/paymentMethod/digital_wallet
                                                                                                                                                                          40. -
                                                                                                                                                                          41. model/paymentMethod/installment_payment
                                                                                                                                                                          42. -
                                                                                                                                                                          43. model/paymentMethod/payment_method
                                                                                                                                                                          44. -
                                                                                                                                                                          45. model/paymentMethod/payment_methods
                                                                                                                                                                          46. -
                                                                                                                                                                          47. model/paymentMethod/tokenized_card
                                                                                                                                                                          48. -
                                                                                                                                                                          49. model/result/google_pay_configure_result
                                                                                                                                                                          50. -
                                                                                                                                                                          51. model/result/google_pay_open_result
                                                                                                                                                                          52. -
                                                                                                                                                                          53. model/result/payment_channels_result
                                                                                                                                                                          54. -
                                                                                                                                                                          55. model/result/result
                                                                                                                                                                          56. -
                                                                                                                                                                          57. model/result/screenless_result
                                                                                                                                                                          58. -
                                                                                                                                                                          59. model/screenless/ambiguous_alias
                                                                                                                                                                          60. -
                                                                                                                                                                          61. model/screenless/ambiguous_blik_payment
                                                                                                                                                                          62. -
                                                                                                                                                                          63. model/screenless/apple_pay_payment
                                                                                                                                                                          64. -
                                                                                                                                                                          65. model/screenless/blik_payment
                                                                                                                                                                          66. -
                                                                                                                                                                          67. model/screenless/callbacks
                                                                                                                                                                          68. -
                                                                                                                                                                          69. model/screenless/credit_card
                                                                                                                                                                          70. -
                                                                                                                                                                          71. model/screenless/credit_card_config
                                                                                                                                                                          72. -
                                                                                                                                                                          73. model/screenless/credit_card_payment
                                                                                                                                                                          74. -
                                                                                                                                                                          75. model/screenless/expiration_date
                                                                                                                                                                          76. -
                                                                                                                                                                          77. model/screenless/google_pay_environment
                                                                                                                                                                          78. -
                                                                                                                                                                          79. model/screenless/google_pay_payment
                                                                                                                                                                          80. -
                                                                                                                                                                          81. model/screenless/google_pay_utils_configuration
                                                                                                                                                                          82. -
                                                                                                                                                                          83. model/screenless/notifications
                                                                                                                                                                          84. -
                                                                                                                                                                          85. model/screenless/pay_po_payment
                                                                                                                                                                          86. -
                                                                                                                                                                          87. model/screenless/payment_details
                                                                                                                                                                          88. -
                                                                                                                                                                          89. model/screenless/raty_pekao_payment
                                                                                                                                                                          90. -
                                                                                                                                                                          91. model/screenless/recursive
                                                                                                                                                                          92. -
                                                                                                                                                                          93. model/screenless/redirects
                                                                                                                                                                          94. -
                                                                                                                                                                          95. model/screenless/screenless_payment
                                                                                                                                                                          96. -
                                                                                                                                                                          97. model/screenless/transfer_method
                                                                                                                                                                          98. -
                                                                                                                                                                          99. model/screenless/transfer_payment
                                                                                                                                                                          100. -
                                                                                                                                                                          101. model/tokenization/tokenization
                                                                                                                                                                          102. -
                                                                                                                                                                          103. model/tpay_configuration
                                                                                                                                                                          104. -
                                                                                                                                                                          105. model/tpay_environment
                                                                                                                                                                          106. -
                                                                                                                                                                          107. model/transaction/single_transaction
                                                                                                                                                                          108. -
                                                                                                                                                                          109. model/transaction/token_payment
                                                                                                                                                                          110. -
                                                                                                                                                                          111. model/transaction/transaction
                                                                                                                                                                          112. -
                                                                                                                                                                          113. model/wallet_configuration
                                                                                                                                                                          114. -
                                                                                                                                                                          115. tpay_button
                                                                                                                                                                          116. -
                                                                                                                                                                          117. tpay_method_channel
                                                                                                                                                                          118. -
                                                                                                                                                                          119. tpay_platform_interface
                                                                                                                                                                          120. -
                                                                                                                                                                          121. util/google_pay_configuration_util
                                                                                                                                                                          122. -
                                                                                                                                                                          123. util/google_pay_util
                                                                                                                                                                          124. -
                                                                                                                                                                          125. util/payment_channels_util
                                                                                                                                                                          126. -
                                                                                                                                                                          127. util/result_util
                                                                                                                                                                          128. -
                                                                                                                                                                          129. util/screenless_result_util
                                                                                                                                                                          130. +
                                                                                                                                                                          131. model/apple_pay_configuration
                                                                                                                                                                          132. +
                                                                                                                                                                          133. model/certificate_pinning_configuration
                                                                                                                                                                          134. +
                                                                                                                                                                          135. model/google_pay_configuration
                                                                                                                                                                          136. +
                                                                                                                                                                          137. model/language/language
                                                                                                                                                                          138. +
                                                                                                                                                                          139. model/language/languages
                                                                                                                                                                          140. +
                                                                                                                                                                          141. model/language/localized_string
                                                                                                                                                                          142. +
                                                                                                                                                                          143. model/merchant/merchant
                                                                                                                                                                          144. +
                                                                                                                                                                          145. model/merchant/merchant_authorization
                                                                                                                                                                          146. +
                                                                                                                                                                          147. model/merchant/merchant_details
                                                                                                                                                                          148. +
                                                                                                                                                                          149. model/payer/payer
                                                                                                                                                                          150. +
                                                                                                                                                                          151. model/payer/payer_address
                                                                                                                                                                          152. +
                                                                                                                                                                          153. model/payer/payer_context
                                                                                                                                                                          154. +
                                                                                                                                                                          155. model/paymentChannel/payment_channel
                                                                                                                                                                          156. +
                                                                                                                                                                          157. model/paymentChannel/payment_constraint
                                                                                                                                                                          158. +
                                                                                                                                                                          159. model/paymentChannel/payment_group
                                                                                                                                                                          160. +
                                                                                                                                                                          161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                          162. +
                                                                                                                                                                          163. model/paymentMethod/blik_alias
                                                                                                                                                                          164. +
                                                                                                                                                                          165. model/paymentMethod/credit_card_brand
                                                                                                                                                                          166. +
                                                                                                                                                                          167. model/paymentMethod/digital_wallet
                                                                                                                                                                          168. +
                                                                                                                                                                          169. model/paymentMethod/installment_payment
                                                                                                                                                                          170. +
                                                                                                                                                                          171. model/paymentMethod/payment_method
                                                                                                                                                                          172. +
                                                                                                                                                                          173. model/paymentMethod/payment_methods
                                                                                                                                                                          174. +
                                                                                                                                                                          175. model/paymentMethod/tokenized_card
                                                                                                                                                                          176. +
                                                                                                                                                                          177. model/result/google_pay_configure_result
                                                                                                                                                                          178. +
                                                                                                                                                                          179. model/result/google_pay_open_result
                                                                                                                                                                          180. +
                                                                                                                                                                          181. model/result/payment_channels_result
                                                                                                                                                                          182. +
                                                                                                                                                                          183. model/result/result
                                                                                                                                                                          184. +
                                                                                                                                                                          185. model/result/screenless_result
                                                                                                                                                                          186. +
                                                                                                                                                                          187. model/screenless/ambiguous_alias
                                                                                                                                                                          188. +
                                                                                                                                                                          189. model/screenless/ambiguous_blik_payment
                                                                                                                                                                          190. +
                                                                                                                                                                          191. model/screenless/apple_pay_payment
                                                                                                                                                                          192. +
                                                                                                                                                                          193. model/screenless/blik_payment
                                                                                                                                                                          194. +
                                                                                                                                                                          195. model/screenless/callbacks
                                                                                                                                                                          196. +
                                                                                                                                                                          197. model/screenless/credit_card
                                                                                                                                                                          198. +
                                                                                                                                                                          199. model/screenless/credit_card_config
                                                                                                                                                                          200. +
                                                                                                                                                                          201. model/screenless/credit_card_payment
                                                                                                                                                                          202. +
                                                                                                                                                                          203. model/screenless/expiration_date
                                                                                                                                                                          204. +
                                                                                                                                                                          205. model/screenless/google_pay_environment
                                                                                                                                                                          206. +
                                                                                                                                                                          207. model/screenless/google_pay_payment
                                                                                                                                                                          208. +
                                                                                                                                                                          209. model/screenless/google_pay_utils_configuration
                                                                                                                                                                          210. +
                                                                                                                                                                          211. model/screenless/notifications
                                                                                                                                                                          212. +
                                                                                                                                                                          213. model/screenless/pay_po_payment
                                                                                                                                                                          214. +
                                                                                                                                                                          215. model/screenless/payment_details
                                                                                                                                                                          216. +
                                                                                                                                                                          217. model/screenless/raty_pekao_payment
                                                                                                                                                                          218. +
                                                                                                                                                                          219. model/screenless/recursive
                                                                                                                                                                          220. +
                                                                                                                                                                          221. model/screenless/redirects
                                                                                                                                                                          222. +
                                                                                                                                                                          223. model/screenless/screenless_payment
                                                                                                                                                                          224. +
                                                                                                                                                                          225. model/screenless/transfer_method
                                                                                                                                                                          226. +
                                                                                                                                                                          227. model/screenless/transfer_payment
                                                                                                                                                                          228. +
                                                                                                                                                                          229. model/tokenization/tokenization
                                                                                                                                                                          230. +
                                                                                                                                                                          231. model/tpay_configuration
                                                                                                                                                                          232. +
                                                                                                                                                                          233. model/tpay_environment
                                                                                                                                                                          234. +
                                                                                                                                                                          235. model/transaction/single_transaction
                                                                                                                                                                          236. +
                                                                                                                                                                          237. model/transaction/token_payment
                                                                                                                                                                          238. +
                                                                                                                                                                          239. model/transaction/transaction
                                                                                                                                                                          240. +
                                                                                                                                                                          241. model/wallet_configuration
                                                                                                                                                                          242. +
                                                                                                                                                                          243. tpay_button
                                                                                                                                                                          244. +
                                                                                                                                                                          245. tpay_method_channel
                                                                                                                                                                          246. +
                                                                                                                                                                          247. tpay_platform_interface
                                                                                                                                                                          248. +
                                                                                                                                                                          249. util/google_pay_configuration_util
                                                                                                                                                                          250. +
                                                                                                                                                                          251. util/google_pay_util
                                                                                                                                                                          252. +
                                                                                                                                                                          253. util/payment_channels_util
                                                                                                                                                                          254. +
                                                                                                                                                                          255. util/result_util
                                                                                                                                                                          256. +
                                                                                                                                                                          257. util/screenless_result_util
                                                                                                                                                                          @@ -178,7 +175,7 @@
                                                                                                                                                                          credit_card_payment library
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                          diff --git a/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library-sidebar.html b/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library-sidebar.html index a7034382..9462ec2f 100644 --- a/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library-sidebar.html +++ b/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                                            -
                                                                                                                                                                          1. Classes
                                                                                                                                                                          2. +
                                                                                                                                                                          3. Classes
                                                                                                                                                                          4. CreditCardPayment
                                                                                                                                                                          5. diff --git a/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library.html b/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library.html index fa725657..e6c4de34 100644 --- a/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library.html +++ b/doc/model_screenless_credit_card_payment/model_screenless_credit_card_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                                            New URL

                                                                                                                                                                            +

                                                                                                                                                                            New URL

                                                                                                                                                                            \ No newline at end of file diff --git a/doc/model_screenless_expiration_date/ExpirationDate-class-sidebar.html b/doc/model_screenless_expiration_date/ExpirationDate-class-sidebar.html index f4e8cd8e..840cc26d 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate-class-sidebar.html +++ b/doc/model_screenless_expiration_date/ExpirationDate-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                                            1. Constructors
                                                                                                                                                                            2. -
                                                                                                                                                                            3. ExpirationDate
                                                                                                                                                                            4. +
                                                                                                                                                                            5. new
                                                                                                                                                                            6. fromJson
                                                                                                                                                                            7. diff --git a/doc/model_screenless_expiration_date/ExpirationDate-class.html b/doc/model_screenless_expiration_date/ExpirationDate-class.html index 89a5635c..fe97f773 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate-class.html +++ b/doc/model_screenless_expiration_date/ExpirationDate-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                              ExpirationDate
                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              Annotations
                                                                                                                                                                              @@ -86,7 +83,7 @@

                                                                                                                                                                              ExpirationDate class

                                                                                                                                                                              Constructors

                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              ExpirationDate({required String month, required String year})
                                                                                                                                                                              @@ -240,7 +237,7 @@

                                                                                                                                                                              Operators

                                                                                                                                                                              @@ -253,7 +250,7 @@
                                                                                                                                                                              expiration_date library
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.fromJson.html b/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.fromJson.html index e169ffe3..4fce6f61 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.fromJson.html +++ b/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              Implementation

                                                                                                                                                                              @@ -94,7 +91,7 @@
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.html b/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.html index bc8f2ab1..8213a535 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.html +++ b/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.html @@ -4,8 +4,8 @@ - - ExpirationDate constructor - ExpirationDate - expiration_date library - Dart API + + ExpirationDate.new constructor - ExpirationDate - expiration_date library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                                              ExpirationDate
                                                                                                                                                                              +
                                                                                                                                                                              ExpirationDate.new
                                                                                                                                                                              -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              Implementation
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              @@ -95,7 +92,7 @@
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/ExpirationDate/month.html b/doc/model_screenless_expiration_date/ExpirationDate/month.html index 1c657368..3bb266c9 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate/month.html +++ b/doc/model_screenless_expiration_date/ExpirationDate/month.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/ExpirationDate/toJson.html b/doc/model_screenless_expiration_date/ExpirationDate/toJson.html index 04212276..25a5d39b 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate/toJson.html +++ b/doc/model_screenless_expiration_date/ExpirationDate/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/ExpirationDate/year.html b/doc/model_screenless_expiration_date/ExpirationDate/year.html index 7914b4f7..f292a610 100644 --- a/doc/model_screenless_expiration_date/ExpirationDate/year.html +++ b/doc/model_screenless_expiration_date/ExpirationDate/year.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                              ExpirationDate class
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/index.html b/doc/model_screenless_expiration_date/index.html index dfc165ad..7b14228f 100644 --- a/doc/model_screenless_expiration_date/index.html +++ b/doc/model_screenless_expiration_date/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                                              - -
                                                                                                                                                                              +
                                                                                                                                                                              Classes
                                                                                                                                                                              flutter_tpay package
                                                                                                                                                                              1. Libraries
                                                                                                                                                                              2. -
                                                                                                                                                                              3. model/apple_pay_configuration
                                                                                                                                                                              4. -
                                                                                                                                                                              5. model/certificate_pinning_configuration
                                                                                                                                                                              6. -
                                                                                                                                                                              7. model/google_pay_configuration
                                                                                                                                                                              8. -
                                                                                                                                                                              9. model/language/language
                                                                                                                                                                              10. -
                                                                                                                                                                              11. model/language/languages
                                                                                                                                                                              12. -
                                                                                                                                                                              13. model/language/localized_string
                                                                                                                                                                              14. -
                                                                                                                                                                              15. model/merchant/merchant
                                                                                                                                                                              16. -
                                                                                                                                                                              17. model/merchant/merchant_authorization
                                                                                                                                                                              18. -
                                                                                                                                                                              19. model/merchant/merchant_details
                                                                                                                                                                              20. -
                                                                                                                                                                              21. model/payer/payer
                                                                                                                                                                              22. -
                                                                                                                                                                              23. model/payer/payer_address
                                                                                                                                                                              24. -
                                                                                                                                                                              25. model/payer/payer_context
                                                                                                                                                                              26. -
                                                                                                                                                                              27. model/paymentChannel/payment_channel
                                                                                                                                                                              28. -
                                                                                                                                                                              29. model/paymentChannel/payment_constraint
                                                                                                                                                                              30. -
                                                                                                                                                                              31. model/paymentChannel/payment_group
                                                                                                                                                                              32. -
                                                                                                                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                              34. -
                                                                                                                                                                              35. model/paymentMethod/blik_alias
                                                                                                                                                                              36. -
                                                                                                                                                                              37. model/paymentMethod/credit_card_brand
                                                                                                                                                                              38. -
                                                                                                                                                                              39. model/paymentMethod/digital_wallet
                                                                                                                                                                              40. -
                                                                                                                                                                              41. model/paymentMethod/installment_payment
                                                                                                                                                                              42. -
                                                                                                                                                                              43. model/paymentMethod/payment_method
                                                                                                                                                                              44. -
                                                                                                                                                                              45. model/paymentMethod/payment_methods
                                                                                                                                                                              46. -
                                                                                                                                                                              47. model/paymentMethod/tokenized_card
                                                                                                                                                                              48. -
                                                                                                                                                                              49. model/result/google_pay_configure_result
                                                                                                                                                                              50. -
                                                                                                                                                                              51. model/result/google_pay_open_result
                                                                                                                                                                              52. -
                                                                                                                                                                              53. model/result/payment_channels_result
                                                                                                                                                                              54. -
                                                                                                                                                                              55. model/result/result
                                                                                                                                                                              56. -
                                                                                                                                                                              57. model/result/screenless_result
                                                                                                                                                                              58. -
                                                                                                                                                                              59. model/screenless/ambiguous_alias
                                                                                                                                                                              60. -
                                                                                                                                                                              61. model/screenless/ambiguous_blik_payment
                                                                                                                                                                              62. -
                                                                                                                                                                              63. model/screenless/apple_pay_payment
                                                                                                                                                                              64. -
                                                                                                                                                                              65. model/screenless/blik_payment
                                                                                                                                                                              66. -
                                                                                                                                                                              67. model/screenless/callbacks
                                                                                                                                                                              68. -
                                                                                                                                                                              69. model/screenless/credit_card
                                                                                                                                                                              70. -
                                                                                                                                                                              71. model/screenless/credit_card_config
                                                                                                                                                                              72. -
                                                                                                                                                                              73. model/screenless/credit_card_payment
                                                                                                                                                                              74. -
                                                                                                                                                                              75. model/screenless/expiration_date
                                                                                                                                                                              76. -
                                                                                                                                                                              77. model/screenless/google_pay_environment
                                                                                                                                                                              78. -
                                                                                                                                                                              79. model/screenless/google_pay_payment
                                                                                                                                                                              80. -
                                                                                                                                                                              81. model/screenless/google_pay_utils_configuration
                                                                                                                                                                              82. -
                                                                                                                                                                              83. model/screenless/notifications
                                                                                                                                                                              84. -
                                                                                                                                                                              85. model/screenless/pay_po_payment
                                                                                                                                                                              86. -
                                                                                                                                                                              87. model/screenless/payment_details
                                                                                                                                                                              88. -
                                                                                                                                                                              89. model/screenless/raty_pekao_payment
                                                                                                                                                                              90. -
                                                                                                                                                                              91. model/screenless/recursive
                                                                                                                                                                              92. -
                                                                                                                                                                              93. model/screenless/redirects
                                                                                                                                                                              94. -
                                                                                                                                                                              95. model/screenless/screenless_payment
                                                                                                                                                                              96. -
                                                                                                                                                                              97. model/screenless/transfer_method
                                                                                                                                                                              98. -
                                                                                                                                                                              99. model/screenless/transfer_payment
                                                                                                                                                                              100. -
                                                                                                                                                                              101. model/tokenization/tokenization
                                                                                                                                                                              102. -
                                                                                                                                                                              103. model/tpay_configuration
                                                                                                                                                                              104. -
                                                                                                                                                                              105. model/tpay_environment
                                                                                                                                                                              106. -
                                                                                                                                                                              107. model/transaction/single_transaction
                                                                                                                                                                              108. -
                                                                                                                                                                              109. model/transaction/token_payment
                                                                                                                                                                              110. -
                                                                                                                                                                              111. model/transaction/transaction
                                                                                                                                                                              112. -
                                                                                                                                                                              113. model/wallet_configuration
                                                                                                                                                                              114. -
                                                                                                                                                                              115. tpay_button
                                                                                                                                                                              116. -
                                                                                                                                                                              117. tpay_method_channel
                                                                                                                                                                              118. -
                                                                                                                                                                              119. tpay_platform_interface
                                                                                                                                                                              120. -
                                                                                                                                                                              121. util/google_pay_configuration_util
                                                                                                                                                                              122. -
                                                                                                                                                                              123. util/google_pay_util
                                                                                                                                                                              124. -
                                                                                                                                                                              125. util/payment_channels_util
                                                                                                                                                                              126. -
                                                                                                                                                                              127. util/result_util
                                                                                                                                                                              128. -
                                                                                                                                                                              129. util/screenless_result_util
                                                                                                                                                                              130. +
                                                                                                                                                                              131. model/apple_pay_configuration
                                                                                                                                                                              132. +
                                                                                                                                                                              133. model/certificate_pinning_configuration
                                                                                                                                                                              134. +
                                                                                                                                                                              135. model/google_pay_configuration
                                                                                                                                                                              136. +
                                                                                                                                                                              137. model/language/language
                                                                                                                                                                              138. +
                                                                                                                                                                              139. model/language/languages
                                                                                                                                                                              140. +
                                                                                                                                                                              141. model/language/localized_string
                                                                                                                                                                              142. +
                                                                                                                                                                              143. model/merchant/merchant
                                                                                                                                                                              144. +
                                                                                                                                                                              145. model/merchant/merchant_authorization
                                                                                                                                                                              146. +
                                                                                                                                                                              147. model/merchant/merchant_details
                                                                                                                                                                              148. +
                                                                                                                                                                              149. model/payer/payer
                                                                                                                                                                              150. +
                                                                                                                                                                              151. model/payer/payer_address
                                                                                                                                                                              152. +
                                                                                                                                                                              153. model/payer/payer_context
                                                                                                                                                                              154. +
                                                                                                                                                                              155. model/paymentChannel/payment_channel
                                                                                                                                                                              156. +
                                                                                                                                                                              157. model/paymentChannel/payment_constraint
                                                                                                                                                                              158. +
                                                                                                                                                                              159. model/paymentChannel/payment_group
                                                                                                                                                                              160. +
                                                                                                                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                              162. +
                                                                                                                                                                              163. model/paymentMethod/blik_alias
                                                                                                                                                                              164. +
                                                                                                                                                                              165. model/paymentMethod/credit_card_brand
                                                                                                                                                                              166. +
                                                                                                                                                                              167. model/paymentMethod/digital_wallet
                                                                                                                                                                              168. +
                                                                                                                                                                              169. model/paymentMethod/installment_payment
                                                                                                                                                                              170. +
                                                                                                                                                                              171. model/paymentMethod/payment_method
                                                                                                                                                                              172. +
                                                                                                                                                                              173. model/paymentMethod/payment_methods
                                                                                                                                                                              174. +
                                                                                                                                                                              175. model/paymentMethod/tokenized_card
                                                                                                                                                                              176. +
                                                                                                                                                                              177. model/result/google_pay_configure_result
                                                                                                                                                                              178. +
                                                                                                                                                                              179. model/result/google_pay_open_result
                                                                                                                                                                              180. +
                                                                                                                                                                              181. model/result/payment_channels_result
                                                                                                                                                                              182. +
                                                                                                                                                                              183. model/result/result
                                                                                                                                                                              184. +
                                                                                                                                                                              185. model/result/screenless_result
                                                                                                                                                                              186. +
                                                                                                                                                                              187. model/screenless/ambiguous_alias
                                                                                                                                                                              188. +
                                                                                                                                                                              189. model/screenless/ambiguous_blik_payment
                                                                                                                                                                              190. +
                                                                                                                                                                              191. model/screenless/apple_pay_payment
                                                                                                                                                                              192. +
                                                                                                                                                                              193. model/screenless/blik_payment
                                                                                                                                                                              194. +
                                                                                                                                                                              195. model/screenless/callbacks
                                                                                                                                                                              196. +
                                                                                                                                                                              197. model/screenless/credit_card
                                                                                                                                                                              198. +
                                                                                                                                                                              199. model/screenless/credit_card_config
                                                                                                                                                                              200. +
                                                                                                                                                                              201. model/screenless/credit_card_payment
                                                                                                                                                                              202. +
                                                                                                                                                                              203. model/screenless/expiration_date
                                                                                                                                                                              204. +
                                                                                                                                                                              205. model/screenless/google_pay_environment
                                                                                                                                                                              206. +
                                                                                                                                                                              207. model/screenless/google_pay_payment
                                                                                                                                                                              208. +
                                                                                                                                                                              209. model/screenless/google_pay_utils_configuration
                                                                                                                                                                              210. +
                                                                                                                                                                              211. model/screenless/notifications
                                                                                                                                                                              212. +
                                                                                                                                                                              213. model/screenless/pay_po_payment
                                                                                                                                                                              214. +
                                                                                                                                                                              215. model/screenless/payment_details
                                                                                                                                                                              216. +
                                                                                                                                                                              217. model/screenless/raty_pekao_payment
                                                                                                                                                                              218. +
                                                                                                                                                                              219. model/screenless/recursive
                                                                                                                                                                              220. +
                                                                                                                                                                              221. model/screenless/redirects
                                                                                                                                                                              222. +
                                                                                                                                                                              223. model/screenless/screenless_payment
                                                                                                                                                                              224. +
                                                                                                                                                                              225. model/screenless/transfer_method
                                                                                                                                                                              226. +
                                                                                                                                                                              227. model/screenless/transfer_payment
                                                                                                                                                                              228. +
                                                                                                                                                                              229. model/tokenization/tokenization
                                                                                                                                                                              230. +
                                                                                                                                                                              231. model/tpay_configuration
                                                                                                                                                                              232. +
                                                                                                                                                                              233. model/tpay_environment
                                                                                                                                                                              234. +
                                                                                                                                                                              235. model/transaction/single_transaction
                                                                                                                                                                              236. +
                                                                                                                                                                              237. model/transaction/token_payment
                                                                                                                                                                              238. +
                                                                                                                                                                              239. model/transaction/transaction
                                                                                                                                                                              240. +
                                                                                                                                                                              241. model/wallet_configuration
                                                                                                                                                                              242. +
                                                                                                                                                                              243. tpay_button
                                                                                                                                                                              244. +
                                                                                                                                                                              245. tpay_method_channel
                                                                                                                                                                              246. +
                                                                                                                                                                              247. tpay_platform_interface
                                                                                                                                                                              248. +
                                                                                                                                                                              249. util/google_pay_configuration_util
                                                                                                                                                                              250. +
                                                                                                                                                                              251. util/google_pay_util
                                                                                                                                                                              252. +
                                                                                                                                                                              253. util/payment_channels_util
                                                                                                                                                                              254. +
                                                                                                                                                                              255. util/result_util
                                                                                                                                                                              256. +
                                                                                                                                                                              257. util/screenless_result_util
                                                                                                                                                                              @@ -176,7 +173,7 @@
                                                                                                                                                                              expiration_date library
                                                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                              diff --git a/doc/model_screenless_expiration_date/model_screenless_expiration_date-library-sidebar.html b/doc/model_screenless_expiration_date/model_screenless_expiration_date-library-sidebar.html index 640b3c28..9ee004af 100644 --- a/doc/model_screenless_expiration_date/model_screenless_expiration_date-library-sidebar.html +++ b/doc/model_screenless_expiration_date/model_screenless_expiration_date-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                                                -
                                                                                                                                                                              1. Classes
                                                                                                                                                                              2. +
                                                                                                                                                                              3. Classes
                                                                                                                                                                              4. ExpirationDate
                                                                                                                                                                              5. diff --git a/doc/model_screenless_expiration_date/model_screenless_expiration_date-library.html b/doc/model_screenless_expiration_date/model_screenless_expiration_date-library.html index dafa54f7..10bf878b 100644 --- a/doc/model_screenless_expiration_date/model_screenless_expiration_date-library.html +++ b/doc/model_screenless_expiration_date/model_screenless_expiration_date-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                                                New URL

                                                                                                                                                                                +

                                                                                                                                                                                New URL

                                                                                                                                                                                \ No newline at end of file diff --git a/doc/model_screenless_google_pay_environment/GooglePayEnvironment.html b/doc/model_screenless_google_pay_environment/GooglePayEnvironment.html index 992ec565..b964d11a 100644 --- a/doc/model_screenless_google_pay_environment/GooglePayEnvironment.html +++ b/doc/model_screenless_google_pay_environment/GooglePayEnvironment.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                                GooglePayEnvironment
                                                                                                                                                                                -
                                                                                                                                                                                - -
                                                                                                                                                                                +
                                                                                                                                                                                Constants @@ -281,7 +278,7 @@
                                                                                                                                                                                google_pay_environment library
                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_environment/GooglePayEnvironment/values-constant.html b/doc/model_screenless_google_pay_environment/GooglePayEnvironment/values-constant.html index 1eedcb19..e13a41ea 100644 --- a/doc/model_screenless_google_pay_environment/GooglePayEnvironment/values-constant.html +++ b/doc/model_screenless_google_pay_environment/GooglePayEnvironment/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                                - -
                                                                                                                                                                                +
                                                                                                                                                                                values constant @@ -96,7 +93,7 @@
                                                                                                                                                                                GooglePayEnvironment enum
                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_environment/index.html b/doc/model_screenless_google_pay_environment/index.html index d194bb07..adaea8c3 100644 --- a/doc/model_screenless_google_pay_environment/index.html +++ b/doc/model_screenless_google_pay_environment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                                                - -
                                                                                                                                                                                +
                                                                                                                                                                                Enums
                                                                                                                                                                                flutter_tpay package
                                                                                                                                                                                1. Libraries
                                                                                                                                                                                2. -
                                                                                                                                                                                3. model/apple_pay_configuration
                                                                                                                                                                                4. -
                                                                                                                                                                                5. model/certificate_pinning_configuration
                                                                                                                                                                                6. -
                                                                                                                                                                                7. model/google_pay_configuration
                                                                                                                                                                                8. -
                                                                                                                                                                                9. model/language/language
                                                                                                                                                                                10. -
                                                                                                                                                                                11. model/language/languages
                                                                                                                                                                                12. -
                                                                                                                                                                                13. model/language/localized_string
                                                                                                                                                                                14. -
                                                                                                                                                                                15. model/merchant/merchant
                                                                                                                                                                                16. -
                                                                                                                                                                                17. model/merchant/merchant_authorization
                                                                                                                                                                                18. -
                                                                                                                                                                                19. model/merchant/merchant_details
                                                                                                                                                                                20. -
                                                                                                                                                                                21. model/payer/payer
                                                                                                                                                                                22. -
                                                                                                                                                                                23. model/payer/payer_address
                                                                                                                                                                                24. -
                                                                                                                                                                                25. model/payer/payer_context
                                                                                                                                                                                26. -
                                                                                                                                                                                27. model/paymentChannel/payment_channel
                                                                                                                                                                                28. -
                                                                                                                                                                                29. model/paymentChannel/payment_constraint
                                                                                                                                                                                30. -
                                                                                                                                                                                31. model/paymentChannel/payment_group
                                                                                                                                                                                32. -
                                                                                                                                                                                33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                                34. -
                                                                                                                                                                                35. model/paymentMethod/blik_alias
                                                                                                                                                                                36. -
                                                                                                                                                                                37. model/paymentMethod/credit_card_brand
                                                                                                                                                                                38. -
                                                                                                                                                                                39. model/paymentMethod/digital_wallet
                                                                                                                                                                                40. -
                                                                                                                                                                                41. model/paymentMethod/installment_payment
                                                                                                                                                                                42. -
                                                                                                                                                                                43. model/paymentMethod/payment_method
                                                                                                                                                                                44. -
                                                                                                                                                                                45. model/paymentMethod/payment_methods
                                                                                                                                                                                46. -
                                                                                                                                                                                47. model/paymentMethod/tokenized_card
                                                                                                                                                                                48. -
                                                                                                                                                                                49. model/result/google_pay_configure_result
                                                                                                                                                                                50. -
                                                                                                                                                                                51. model/result/google_pay_open_result
                                                                                                                                                                                52. -
                                                                                                                                                                                53. model/result/payment_channels_result
                                                                                                                                                                                54. -
                                                                                                                                                                                55. model/result/result
                                                                                                                                                                                56. -
                                                                                                                                                                                57. model/result/screenless_result
                                                                                                                                                                                58. -
                                                                                                                                                                                59. model/screenless/ambiguous_alias
                                                                                                                                                                                60. -
                                                                                                                                                                                61. model/screenless/ambiguous_blik_payment
                                                                                                                                                                                62. -
                                                                                                                                                                                63. model/screenless/apple_pay_payment
                                                                                                                                                                                64. -
                                                                                                                                                                                65. model/screenless/blik_payment
                                                                                                                                                                                66. -
                                                                                                                                                                                67. model/screenless/callbacks
                                                                                                                                                                                68. -
                                                                                                                                                                                69. model/screenless/credit_card
                                                                                                                                                                                70. -
                                                                                                                                                                                71. model/screenless/credit_card_config
                                                                                                                                                                                72. -
                                                                                                                                                                                73. model/screenless/credit_card_payment
                                                                                                                                                                                74. -
                                                                                                                                                                                75. model/screenless/expiration_date
                                                                                                                                                                                76. -
                                                                                                                                                                                77. model/screenless/google_pay_environment
                                                                                                                                                                                78. -
                                                                                                                                                                                79. model/screenless/google_pay_payment
                                                                                                                                                                                80. -
                                                                                                                                                                                81. model/screenless/google_pay_utils_configuration
                                                                                                                                                                                82. -
                                                                                                                                                                                83. model/screenless/notifications
                                                                                                                                                                                84. -
                                                                                                                                                                                85. model/screenless/pay_po_payment
                                                                                                                                                                                86. -
                                                                                                                                                                                87. model/screenless/payment_details
                                                                                                                                                                                88. -
                                                                                                                                                                                89. model/screenless/raty_pekao_payment
                                                                                                                                                                                90. -
                                                                                                                                                                                91. model/screenless/recursive
                                                                                                                                                                                92. -
                                                                                                                                                                                93. model/screenless/redirects
                                                                                                                                                                                94. -
                                                                                                                                                                                95. model/screenless/screenless_payment
                                                                                                                                                                                96. -
                                                                                                                                                                                97. model/screenless/transfer_method
                                                                                                                                                                                98. -
                                                                                                                                                                                99. model/screenless/transfer_payment
                                                                                                                                                                                100. -
                                                                                                                                                                                101. model/tokenization/tokenization
                                                                                                                                                                                102. -
                                                                                                                                                                                103. model/tpay_configuration
                                                                                                                                                                                104. -
                                                                                                                                                                                105. model/tpay_environment
                                                                                                                                                                                106. -
                                                                                                                                                                                107. model/transaction/single_transaction
                                                                                                                                                                                108. -
                                                                                                                                                                                109. model/transaction/token_payment
                                                                                                                                                                                110. -
                                                                                                                                                                                111. model/transaction/transaction
                                                                                                                                                                                112. -
                                                                                                                                                                                113. model/wallet_configuration
                                                                                                                                                                                114. -
                                                                                                                                                                                115. tpay_button
                                                                                                                                                                                116. -
                                                                                                                                                                                117. tpay_method_channel
                                                                                                                                                                                118. -
                                                                                                                                                                                119. tpay_platform_interface
                                                                                                                                                                                120. -
                                                                                                                                                                                121. util/google_pay_configuration_util
                                                                                                                                                                                122. -
                                                                                                                                                                                123. util/google_pay_util
                                                                                                                                                                                124. -
                                                                                                                                                                                125. util/payment_channels_util
                                                                                                                                                                                126. -
                                                                                                                                                                                127. util/result_util
                                                                                                                                                                                128. -
                                                                                                                                                                                129. util/screenless_result_util
                                                                                                                                                                                130. +
                                                                                                                                                                                131. model/apple_pay_configuration
                                                                                                                                                                                132. +
                                                                                                                                                                                133. model/certificate_pinning_configuration
                                                                                                                                                                                134. +
                                                                                                                                                                                135. model/google_pay_configuration
                                                                                                                                                                                136. +
                                                                                                                                                                                137. model/language/language
                                                                                                                                                                                138. +
                                                                                                                                                                                139. model/language/languages
                                                                                                                                                                                140. +
                                                                                                                                                                                141. model/language/localized_string
                                                                                                                                                                                142. +
                                                                                                                                                                                143. model/merchant/merchant
                                                                                                                                                                                144. +
                                                                                                                                                                                145. model/merchant/merchant_authorization
                                                                                                                                                                                146. +
                                                                                                                                                                                147. model/merchant/merchant_details
                                                                                                                                                                                148. +
                                                                                                                                                                                149. model/payer/payer
                                                                                                                                                                                150. +
                                                                                                                                                                                151. model/payer/payer_address
                                                                                                                                                                                152. +
                                                                                                                                                                                153. model/payer/payer_context
                                                                                                                                                                                154. +
                                                                                                                                                                                155. model/paymentChannel/payment_channel
                                                                                                                                                                                156. +
                                                                                                                                                                                157. model/paymentChannel/payment_constraint
                                                                                                                                                                                158. +
                                                                                                                                                                                159. model/paymentChannel/payment_group
                                                                                                                                                                                160. +
                                                                                                                                                                                161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                                                162. +
                                                                                                                                                                                163. model/paymentMethod/blik_alias
                                                                                                                                                                                164. +
                                                                                                                                                                                165. model/paymentMethod/credit_card_brand
                                                                                                                                                                                166. +
                                                                                                                                                                                167. model/paymentMethod/digital_wallet
                                                                                                                                                                                168. +
                                                                                                                                                                                169. model/paymentMethod/installment_payment
                                                                                                                                                                                170. +
                                                                                                                                                                                171. model/paymentMethod/payment_method
                                                                                                                                                                                172. +
                                                                                                                                                                                173. model/paymentMethod/payment_methods
                                                                                                                                                                                174. +
                                                                                                                                                                                175. model/paymentMethod/tokenized_card
                                                                                                                                                                                176. +
                                                                                                                                                                                177. model/result/google_pay_configure_result
                                                                                                                                                                                178. +
                                                                                                                                                                                179. model/result/google_pay_open_result
                                                                                                                                                                                180. +
                                                                                                                                                                                181. model/result/payment_channels_result
                                                                                                                                                                                182. +
                                                                                                                                                                                183. model/result/result
                                                                                                                                                                                184. +
                                                                                                                                                                                185. model/result/screenless_result
                                                                                                                                                                                186. +
                                                                                                                                                                                187. model/screenless/ambiguous_alias
                                                                                                                                                                                188. +
                                                                                                                                                                                189. model/screenless/ambiguous_blik_payment
                                                                                                                                                                                190. +
                                                                                                                                                                                191. model/screenless/apple_pay_payment
                                                                                                                                                                                192. +
                                                                                                                                                                                193. model/screenless/blik_payment
                                                                                                                                                                                194. +
                                                                                                                                                                                195. model/screenless/callbacks
                                                                                                                                                                                196. +
                                                                                                                                                                                197. model/screenless/credit_card
                                                                                                                                                                                198. +
                                                                                                                                                                                199. model/screenless/credit_card_config
                                                                                                                                                                                200. +
                                                                                                                                                                                201. model/screenless/credit_card_payment
                                                                                                                                                                                202. +
                                                                                                                                                                                203. model/screenless/expiration_date
                                                                                                                                                                                204. +
                                                                                                                                                                                205. model/screenless/google_pay_environment
                                                                                                                                                                                206. +
                                                                                                                                                                                207. model/screenless/google_pay_payment
                                                                                                                                                                                208. +
                                                                                                                                                                                209. model/screenless/google_pay_utils_configuration
                                                                                                                                                                                210. +
                                                                                                                                                                                211. model/screenless/notifications
                                                                                                                                                                                212. +
                                                                                                                                                                                213. model/screenless/pay_po_payment
                                                                                                                                                                                214. +
                                                                                                                                                                                215. model/screenless/payment_details
                                                                                                                                                                                216. +
                                                                                                                                                                                217. model/screenless/raty_pekao_payment
                                                                                                                                                                                218. +
                                                                                                                                                                                219. model/screenless/recursive
                                                                                                                                                                                220. +
                                                                                                                                                                                221. model/screenless/redirects
                                                                                                                                                                                222. +
                                                                                                                                                                                223. model/screenless/screenless_payment
                                                                                                                                                                                224. +
                                                                                                                                                                                225. model/screenless/transfer_method
                                                                                                                                                                                226. +
                                                                                                                                                                                227. model/screenless/transfer_payment
                                                                                                                                                                                228. +
                                                                                                                                                                                229. model/tokenization/tokenization
                                                                                                                                                                                230. +
                                                                                                                                                                                231. model/tpay_configuration
                                                                                                                                                                                232. +
                                                                                                                                                                                233. model/tpay_environment
                                                                                                                                                                                234. +
                                                                                                                                                                                235. model/transaction/single_transaction
                                                                                                                                                                                236. +
                                                                                                                                                                                237. model/transaction/token_payment
                                                                                                                                                                                238. +
                                                                                                                                                                                239. model/transaction/transaction
                                                                                                                                                                                240. +
                                                                                                                                                                                241. model/wallet_configuration
                                                                                                                                                                                242. +
                                                                                                                                                                                243. tpay_button
                                                                                                                                                                                244. +
                                                                                                                                                                                245. tpay_method_channel
                                                                                                                                                                                246. +
                                                                                                                                                                                247. tpay_platform_interface
                                                                                                                                                                                248. +
                                                                                                                                                                                249. util/google_pay_configuration_util
                                                                                                                                                                                250. +
                                                                                                                                                                                251. util/google_pay_util
                                                                                                                                                                                252. +
                                                                                                                                                                                253. util/payment_channels_util
                                                                                                                                                                                254. +
                                                                                                                                                                                255. util/result_util
                                                                                                                                                                                256. +
                                                                                                                                                                                257. util/screenless_result_util
                                                                                                                                                                                @@ -176,7 +173,7 @@
                                                                                                                                                                                google_pay_environment library
                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library-sidebar.html b/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library-sidebar.html index 19592624..49542904 100644 --- a/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library-sidebar.html +++ b/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library-sidebar.html @@ -1,6 +1,6 @@
                                                                                                                                                                                  -
                                                                                                                                                                                1. Enums
                                                                                                                                                                                2. +
                                                                                                                                                                                3. Enums
                                                                                                                                                                                4. GooglePayEnvironment
                                                                                                                                                                                5. diff --git a/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library.html b/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library.html index 188542eb..b678a082 100644 --- a/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library.html +++ b/doc/model_screenless_google_pay_environment/model_screenless_google_pay_environment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                                                  New URL

                                                                                                                                                                                  +

                                                                                                                                                                                  New URL

                                                                                                                                                                                  \ No newline at end of file diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment-class-sidebar.html b/doc/model_screenless_google_pay_payment/GooglePayPayment-class-sidebar.html index b2879033..8e37f959 100644 --- a/doc/model_screenless_google_pay_payment/GooglePayPayment-class-sidebar.html +++ b/doc/model_screenless_google_pay_payment/GooglePayPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                                                  1. Constructors
                                                                                                                                                                                  2. -
                                                                                                                                                                                  3. GooglePayPayment
                                                                                                                                                                                  4. +
                                                                                                                                                                                  5. new
                                                                                                                                                                                  6. fromJson
                                                                                                                                                                                  7. diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment-class.html b/doc/model_screenless_google_pay_payment/GooglePayPayment-class.html index 4c93ff81..fce419a5 100644 --- a/doc/model_screenless_google_pay_payment/GooglePayPayment-class.html +++ b/doc/model_screenless_google_pay_payment/GooglePayPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                                                    GooglePayPayment
                                                                                                                                                                                    -
                                                                                                                                                                                    - -
                                                                                                                                                                                    +
                                                                                                                                                                                    GooglePayPayment class
                                                                                                                                                                                    Annotations
                                                                                                                                                                                    @@ -96,8 +93,8 @@

                                                                                                                                                                                    GooglePayPayment class

                                                                                                                                                                                    Constructors

                                                                                                                                                                                    -
                                                                                                                                                                                    - GooglePayPayment({required PaymentDetails paymentDetails, required Payer payer, required String token, Callbacks? callbacks}) +
                                                                                                                                                                                    + GooglePayPayment({required PaymentDetails paymentDetails, required Payer payer, required String token, required Callbacks callbacks})
                                                                                                                                                                                    @@ -119,7 +116,7 @@

                                                                                                                                                                                    Properties

                                                                                                                                                                                    callbacks - Callbacks? + Callbacks
                                                                                                                                                                                    @@ -274,7 +271,7 @@

                                                                                                                                                                                    Operators

                                                                                                                                                                                    @@ -287,7 +284,7 @@
                                                                                                                                                                                    google_pay_payment library
                                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.fromJson.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.fromJson.html index b406646b..59dea26f 100644 --- a/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.fromJson.html +++ b/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                                    - -
                                                                                                                                                                                    +
                                                                                                                                                                                    Implementation

                                                                                                                                                                                    @@ -94,7 +91,7 @@
                                                                                                                                                                                    GooglePayPayment class
                                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.html index 4e0cb96f..095e9a9b 100644 --- a/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.html +++ b/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.html @@ -4,8 +4,8 @@ - - GooglePayPayment constructor - GooglePayPayment - google_pay_payment library - Dart API + + GooglePayPayment.new constructor - GooglePayPayment - google_pay_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                                                    GooglePayPayment
                                                                                                                                                                                    +
                                                                                                                                                                                    GooglePayPayment.new
                                                                                                                                                                                    -
                                                                                                                                                                                    - -
                                                                                                                                                                                    +
                                                                                                                                                                                    GooglePayPayment constructor GooglePayPayment({
                                                                                                                                                                                    1. required PaymentDetails paymentDetails,
                                                                                                                                                                                    2. required Payer payer,
                                                                                                                                                                                    3. required String token,
                                                                                                                                                                                    4. -
                                                                                                                                                                                    5. Callbacks? callbacks,
                                                                                                                                                                                    6. +
                                                                                                                                                                                    7. required Callbacks callbacks,
                                                                                                                                                                                    })
                                                                                                                                                  @@ -73,7 +70,7 @@

                                                                                                                                                  Implementation

                                                                                                                                                  required super.paymentDetails, required super.payer, required this.token, - super.callbacks + required super.callbacks });
                                                                                                                                                @@ -88,9 +85,9 @@

                                                                                                                                                Implementation

                                                                                                                                                GooglePayPayment class
                                                                                                                                                @@ -102,7 +99,7 @@
                                                                                                                                                GooglePayPayment class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/toJson.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/toJson.html index 26e7127a..81de8442 100644 --- a/doc/model_screenless_google_pay_payment/GooglePayPayment/toJson.html +++ b/doc/model_screenless_google_pay_payment/GooglePayPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                GooglePayPayment class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/token.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/token.html index 487fc591..b18d3374 100644 --- a/doc/model_screenless_google_pay_payment/GooglePayPayment/token.html +++ b/doc/model_screenless_google_pay_payment/GooglePayPayment/token.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                GooglePayPayment class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/index.html b/doc/model_screenless_google_pay_payment/index.html index b646aaef..ff199e0a 100644 --- a/doc/model_screenless_google_pay_payment/index.html +++ b/doc/model_screenless_google_pay_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Classes
                                                                                                                                                flutter_tpay package
                                                                                                                                                1. Libraries
                                                                                                                                                2. -
                                                                                                                                                3. model/apple_pay_configuration
                                                                                                                                                4. -
                                                                                                                                                5. model/certificate_pinning_configuration
                                                                                                                                                6. -
                                                                                                                                                7. model/google_pay_configuration
                                                                                                                                                8. -
                                                                                                                                                9. model/language/language
                                                                                                                                                10. -
                                                                                                                                                11. model/language/languages
                                                                                                                                                12. -
                                                                                                                                                13. model/language/localized_string
                                                                                                                                                14. -
                                                                                                                                                15. model/merchant/merchant
                                                                                                                                                16. -
                                                                                                                                                17. model/merchant/merchant_authorization
                                                                                                                                                18. -
                                                                                                                                                19. model/merchant/merchant_details
                                                                                                                                                20. -
                                                                                                                                                21. model/payer/payer
                                                                                                                                                22. -
                                                                                                                                                23. model/payer/payer_address
                                                                                                                                                24. -
                                                                                                                                                25. model/payer/payer_context
                                                                                                                                                26. -
                                                                                                                                                27. model/paymentChannel/payment_channel
                                                                                                                                                28. -
                                                                                                                                                29. model/paymentChannel/payment_constraint
                                                                                                                                                30. -
                                                                                                                                                31. model/paymentChannel/payment_group
                                                                                                                                                32. -
                                                                                                                                                33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                34. -
                                                                                                                                                35. model/paymentMethod/blik_alias
                                                                                                                                                36. -
                                                                                                                                                37. model/paymentMethod/credit_card_brand
                                                                                                                                                38. -
                                                                                                                                                39. model/paymentMethod/digital_wallet
                                                                                                                                                40. -
                                                                                                                                                41. model/paymentMethod/installment_payment
                                                                                                                                                42. -
                                                                                                                                                43. model/paymentMethod/payment_method
                                                                                                                                                44. -
                                                                                                                                                45. model/paymentMethod/payment_methods
                                                                                                                                                46. -
                                                                                                                                                47. model/paymentMethod/tokenized_card
                                                                                                                                                48. -
                                                                                                                                                49. model/result/google_pay_configure_result
                                                                                                                                                50. -
                                                                                                                                                51. model/result/google_pay_open_result
                                                                                                                                                52. -
                                                                                                                                                53. model/result/payment_channels_result
                                                                                                                                                54. -
                                                                                                                                                55. model/result/result
                                                                                                                                                56. -
                                                                                                                                                57. model/result/screenless_result
                                                                                                                                                58. -
                                                                                                                                                59. model/screenless/ambiguous_alias
                                                                                                                                                60. -
                                                                                                                                                61. model/screenless/ambiguous_blik_payment
                                                                                                                                                62. -
                                                                                                                                                63. model/screenless/apple_pay_payment
                                                                                                                                                64. -
                                                                                                                                                65. model/screenless/blik_payment
                                                                                                                                                66. -
                                                                                                                                                67. model/screenless/callbacks
                                                                                                                                                68. -
                                                                                                                                                69. model/screenless/credit_card
                                                                                                                                                70. -
                                                                                                                                                71. model/screenless/credit_card_config
                                                                                                                                                72. -
                                                                                                                                                73. model/screenless/credit_card_payment
                                                                                                                                                74. -
                                                                                                                                                75. model/screenless/expiration_date
                                                                                                                                                76. -
                                                                                                                                                77. model/screenless/google_pay_environment
                                                                                                                                                78. -
                                                                                                                                                79. model/screenless/google_pay_payment
                                                                                                                                                80. -
                                                                                                                                                81. model/screenless/google_pay_utils_configuration
                                                                                                                                                82. -
                                                                                                                                                83. model/screenless/notifications
                                                                                                                                                84. -
                                                                                                                                                85. model/screenless/pay_po_payment
                                                                                                                                                86. -
                                                                                                                                                87. model/screenless/payment_details
                                                                                                                                                88. -
                                                                                                                                                89. model/screenless/raty_pekao_payment
                                                                                                                                                90. -
                                                                                                                                                91. model/screenless/recursive
                                                                                                                                                92. -
                                                                                                                                                93. model/screenless/redirects
                                                                                                                                                94. -
                                                                                                                                                95. model/screenless/screenless_payment
                                                                                                                                                96. -
                                                                                                                                                97. model/screenless/transfer_method
                                                                                                                                                98. -
                                                                                                                                                99. model/screenless/transfer_payment
                                                                                                                                                100. -
                                                                                                                                                101. model/tokenization/tokenization
                                                                                                                                                102. -
                                                                                                                                                103. model/tpay_configuration
                                                                                                                                                104. -
                                                                                                                                                105. model/tpay_environment
                                                                                                                                                106. -
                                                                                                                                                107. model/transaction/single_transaction
                                                                                                                                                108. -
                                                                                                                                                109. model/transaction/token_payment
                                                                                                                                                110. -
                                                                                                                                                111. model/transaction/transaction
                                                                                                                                                112. -
                                                                                                                                                113. model/wallet_configuration
                                                                                                                                                114. -
                                                                                                                                                115. tpay_button
                                                                                                                                                116. -
                                                                                                                                                117. tpay_method_channel
                                                                                                                                                118. -
                                                                                                                                                119. tpay_platform_interface
                                                                                                                                                120. -
                                                                                                                                                121. util/google_pay_configuration_util
                                                                                                                                                122. -
                                                                                                                                                123. util/google_pay_util
                                                                                                                                                124. -
                                                                                                                                                125. util/payment_channels_util
                                                                                                                                                126. -
                                                                                                                                                127. util/result_util
                                                                                                                                                128. -
                                                                                                                                                129. util/screenless_result_util
                                                                                                                                                130. +
                                                                                                                                                131. model/apple_pay_configuration
                                                                                                                                                132. +
                                                                                                                                                133. model/certificate_pinning_configuration
                                                                                                                                                134. +
                                                                                                                                                135. model/google_pay_configuration
                                                                                                                                                136. +
                                                                                                                                                137. model/language/language
                                                                                                                                                138. +
                                                                                                                                                139. model/language/languages
                                                                                                                                                140. +
                                                                                                                                                141. model/language/localized_string
                                                                                                                                                142. +
                                                                                                                                                143. model/merchant/merchant
                                                                                                                                                144. +
                                                                                                                                                145. model/merchant/merchant_authorization
                                                                                                                                                146. +
                                                                                                                                                147. model/merchant/merchant_details
                                                                                                                                                148. +
                                                                                                                                                149. model/payer/payer
                                                                                                                                                150. +
                                                                                                                                                151. model/payer/payer_address
                                                                                                                                                152. +
                                                                                                                                                153. model/payer/payer_context
                                                                                                                                                154. +
                                                                                                                                                155. model/paymentChannel/payment_channel
                                                                                                                                                156. +
                                                                                                                                                157. model/paymentChannel/payment_constraint
                                                                                                                                                158. +
                                                                                                                                                159. model/paymentChannel/payment_group
                                                                                                                                                160. +
                                                                                                                                                161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                162. +
                                                                                                                                                163. model/paymentMethod/blik_alias
                                                                                                                                                164. +
                                                                                                                                                165. model/paymentMethod/credit_card_brand
                                                                                                                                                166. +
                                                                                                                                                167. model/paymentMethod/digital_wallet
                                                                                                                                                168. +
                                                                                                                                                169. model/paymentMethod/installment_payment
                                                                                                                                                170. +
                                                                                                                                                171. model/paymentMethod/payment_method
                                                                                                                                                172. +
                                                                                                                                                173. model/paymentMethod/payment_methods
                                                                                                                                                174. +
                                                                                                                                                175. model/paymentMethod/tokenized_card
                                                                                                                                                176. +
                                                                                                                                                177. model/result/google_pay_configure_result
                                                                                                                                                178. +
                                                                                                                                                179. model/result/google_pay_open_result
                                                                                                                                                180. +
                                                                                                                                                181. model/result/payment_channels_result
                                                                                                                                                182. +
                                                                                                                                                183. model/result/result
                                                                                                                                                184. +
                                                                                                                                                185. model/result/screenless_result
                                                                                                                                                186. +
                                                                                                                                                187. model/screenless/ambiguous_alias
                                                                                                                                                188. +
                                                                                                                                                189. model/screenless/ambiguous_blik_payment
                                                                                                                                                190. +
                                                                                                                                                191. model/screenless/apple_pay_payment
                                                                                                                                                192. +
                                                                                                                                                193. model/screenless/blik_payment
                                                                                                                                                194. +
                                                                                                                                                195. model/screenless/callbacks
                                                                                                                                                196. +
                                                                                                                                                197. model/screenless/credit_card
                                                                                                                                                198. +
                                                                                                                                                199. model/screenless/credit_card_config
                                                                                                                                                200. +
                                                                                                                                                201. model/screenless/credit_card_payment
                                                                                                                                                202. +
                                                                                                                                                203. model/screenless/expiration_date
                                                                                                                                                204. +
                                                                                                                                                205. model/screenless/google_pay_environment
                                                                                                                                                206. +
                                                                                                                                                207. model/screenless/google_pay_payment
                                                                                                                                                208. +
                                                                                                                                                209. model/screenless/google_pay_utils_configuration
                                                                                                                                                210. +
                                                                                                                                                211. model/screenless/notifications
                                                                                                                                                212. +
                                                                                                                                                213. model/screenless/pay_po_payment
                                                                                                                                                214. +
                                                                                                                                                215. model/screenless/payment_details
                                                                                                                                                216. +
                                                                                                                                                217. model/screenless/raty_pekao_payment
                                                                                                                                                218. +
                                                                                                                                                219. model/screenless/recursive
                                                                                                                                                220. +
                                                                                                                                                221. model/screenless/redirects
                                                                                                                                                222. +
                                                                                                                                                223. model/screenless/screenless_payment
                                                                                                                                                224. +
                                                                                                                                                225. model/screenless/transfer_method
                                                                                                                                                226. +
                                                                                                                                                227. model/screenless/transfer_payment
                                                                                                                                                228. +
                                                                                                                                                229. model/tokenization/tokenization
                                                                                                                                                230. +
                                                                                                                                                231. model/tpay_configuration
                                                                                                                                                232. +
                                                                                                                                                233. model/tpay_environment
                                                                                                                                                234. +
                                                                                                                                                235. model/transaction/single_transaction
                                                                                                                                                236. +
                                                                                                                                                237. model/transaction/token_payment
                                                                                                                                                238. +
                                                                                                                                                239. model/transaction/transaction
                                                                                                                                                240. +
                                                                                                                                                241. model/wallet_configuration
                                                                                                                                                242. +
                                                                                                                                                243. tpay_button
                                                                                                                                                244. +
                                                                                                                                                245. tpay_method_channel
                                                                                                                                                246. +
                                                                                                                                                247. tpay_platform_interface
                                                                                                                                                248. +
                                                                                                                                                249. util/google_pay_configuration_util
                                                                                                                                                250. +
                                                                                                                                                251. util/google_pay_util
                                                                                                                                                252. +
                                                                                                                                                253. util/payment_channels_util
                                                                                                                                                254. +
                                                                                                                                                255. util/result_util
                                                                                                                                                256. +
                                                                                                                                                257. util/screenless_result_util
                                                                                                                                                @@ -178,7 +175,7 @@
                                                                                                                                                google_pay_payment library
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library-sidebar.html b/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library-sidebar.html index a5125e58..9797a264 100644 --- a/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library-sidebar.html +++ b/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                  -
                                                                                                                                                1. Classes
                                                                                                                                                2. +
                                                                                                                                                3. Classes
                                                                                                                                                4. GooglePayPayment
                                                                                                                                                5. diff --git a/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library.html b/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library.html index a036322c..fdbe9533 100644 --- a/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library.html +++ b/doc/model_screenless_google_pay_payment/model_screenless_google_pay_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                  New URL

                                                                                                                                                  +

                                                                                                                                                  New URL

                                                                                                                                                  \ No newline at end of file diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class-sidebar.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class-sidebar.html index 9baa2bab..fb394d7e 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class-sidebar.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                  1. Constructors
                                                                                                                                                  2. -
                                                                                                                                                  3. GooglePayUtilsConfiguration
                                                                                                                                                  4. +
                                                                                                                                                  5. new
                                                                                                                                                  6. fromJson
                                                                                                                                                  7. diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class.html index 27686817..b65ec89a 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                    GooglePayUtilsConfiguration
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    Annotations
                                                                                                                                                    @@ -94,7 +91,7 @@

                                                                                                                                                    GooglePayUtilsConfiguration class

                                                                                                                                                    Constructors

                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    GooglePayUtilsConfiguration({required double price, required String merchantName, required String merchantId, required GooglePayEnvironment environment, int? customRequestCode})
                                                                                                                                                    @@ -284,7 +281,7 @@

                                                                                                                                                    Operators

                                                                                                                                                    @@ -297,7 +294,7 @@
                                                                                                                                                    google_pay_utils_configuration library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.fromJson.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.fromJson.html index f32e6e47..c69db3e6 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.fromJson.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation

                                                                                                                                                    @@ -94,7 +91,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.html index 3a1a9a4d..a99cd5fc 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/GooglePayUtilsConfiguration.html @@ -4,8 +4,8 @@ - - GooglePayUtilsConfiguration constructor - GooglePayUtilsConfiguration - google_pay_utils_configuration library - Dart API + + GooglePayUtilsConfiguration.new constructor - GooglePayUtilsConfiguration - google_pay_utils_configuration library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                    GooglePayUtilsConfiguration
                                                                                                                                                    +
                                                                                                                                                    GooglePayUtilsConfiguration.new
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    @@ -104,7 +101,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/customRequestCode.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/customRequestCode.html index a7e4d070..6be19f5a 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/customRequestCode.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/customRequestCode.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/environment.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/environment.html index 6e6a0f46..5a3b1214 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/environment.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/environment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantId.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantId.html index b7c80297..45a14cc5 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantId.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantName.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantName.html index e893499c..fb53bbdf 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantName.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/merchantName.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/price.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/price.html index 61bb8295..90dcfd48 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/price.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/price.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/toJson.html b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/toJson.html index a3edad24..20f56b94 100644 --- a/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/toJson.html +++ b/doc/model_screenless_google_pay_utils_configuration/GooglePayUtilsConfiguration/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    GooglePayUtilsConfiguration class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/index.html b/doc/model_screenless_google_pay_utils_configuration/index.html index 2071cdc8..feeffa45 100644 --- a/doc/model_screenless_google_pay_utils_configuration/index.html +++ b/doc/model_screenless_google_pay_utils_configuration/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Classes
                                                                                                                                                    flutter_tpay package
                                                                                                                                                    1. Libraries
                                                                                                                                                    2. -
                                                                                                                                                    3. model/apple_pay_configuration
                                                                                                                                                    4. -
                                                                                                                                                    5. model/certificate_pinning_configuration
                                                                                                                                                    6. -
                                                                                                                                                    7. model/google_pay_configuration
                                                                                                                                                    8. -
                                                                                                                                                    9. model/language/language
                                                                                                                                                    10. -
                                                                                                                                                    11. model/language/languages
                                                                                                                                                    12. -
                                                                                                                                                    13. model/language/localized_string
                                                                                                                                                    14. -
                                                                                                                                                    15. model/merchant/merchant
                                                                                                                                                    16. -
                                                                                                                                                    17. model/merchant/merchant_authorization
                                                                                                                                                    18. -
                                                                                                                                                    19. model/merchant/merchant_details
                                                                                                                                                    20. -
                                                                                                                                                    21. model/payer/payer
                                                                                                                                                    22. -
                                                                                                                                                    23. model/payer/payer_address
                                                                                                                                                    24. -
                                                                                                                                                    25. model/payer/payer_context
                                                                                                                                                    26. -
                                                                                                                                                    27. model/paymentChannel/payment_channel
                                                                                                                                                    28. -
                                                                                                                                                    29. model/paymentChannel/payment_constraint
                                                                                                                                                    30. -
                                                                                                                                                    31. model/paymentChannel/payment_group
                                                                                                                                                    32. -
                                                                                                                                                    33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                    34. -
                                                                                                                                                    35. model/paymentMethod/blik_alias
                                                                                                                                                    36. -
                                                                                                                                                    37. model/paymentMethod/credit_card_brand
                                                                                                                                                    38. -
                                                                                                                                                    39. model/paymentMethod/digital_wallet
                                                                                                                                                    40. -
                                                                                                                                                    41. model/paymentMethod/installment_payment
                                                                                                                                                    42. -
                                                                                                                                                    43. model/paymentMethod/payment_method
                                                                                                                                                    44. -
                                                                                                                                                    45. model/paymentMethod/payment_methods
                                                                                                                                                    46. -
                                                                                                                                                    47. model/paymentMethod/tokenized_card
                                                                                                                                                    48. -
                                                                                                                                                    49. model/result/google_pay_configure_result
                                                                                                                                                    50. -
                                                                                                                                                    51. model/result/google_pay_open_result
                                                                                                                                                    52. -
                                                                                                                                                    53. model/result/payment_channels_result
                                                                                                                                                    54. -
                                                                                                                                                    55. model/result/result
                                                                                                                                                    56. -
                                                                                                                                                    57. model/result/screenless_result
                                                                                                                                                    58. -
                                                                                                                                                    59. model/screenless/ambiguous_alias
                                                                                                                                                    60. -
                                                                                                                                                    61. model/screenless/ambiguous_blik_payment
                                                                                                                                                    62. -
                                                                                                                                                    63. model/screenless/apple_pay_payment
                                                                                                                                                    64. -
                                                                                                                                                    65. model/screenless/blik_payment
                                                                                                                                                    66. -
                                                                                                                                                    67. model/screenless/callbacks
                                                                                                                                                    68. -
                                                                                                                                                    69. model/screenless/credit_card
                                                                                                                                                    70. -
                                                                                                                                                    71. model/screenless/credit_card_config
                                                                                                                                                    72. -
                                                                                                                                                    73. model/screenless/credit_card_payment
                                                                                                                                                    74. -
                                                                                                                                                    75. model/screenless/expiration_date
                                                                                                                                                    76. -
                                                                                                                                                    77. model/screenless/google_pay_environment
                                                                                                                                                    78. -
                                                                                                                                                    79. model/screenless/google_pay_payment
                                                                                                                                                    80. -
                                                                                                                                                    81. model/screenless/google_pay_utils_configuration
                                                                                                                                                    82. -
                                                                                                                                                    83. model/screenless/notifications
                                                                                                                                                    84. -
                                                                                                                                                    85. model/screenless/pay_po_payment
                                                                                                                                                    86. -
                                                                                                                                                    87. model/screenless/payment_details
                                                                                                                                                    88. -
                                                                                                                                                    89. model/screenless/raty_pekao_payment
                                                                                                                                                    90. -
                                                                                                                                                    91. model/screenless/recursive
                                                                                                                                                    92. -
                                                                                                                                                    93. model/screenless/redirects
                                                                                                                                                    94. -
                                                                                                                                                    95. model/screenless/screenless_payment
                                                                                                                                                    96. -
                                                                                                                                                    97. model/screenless/transfer_method
                                                                                                                                                    98. -
                                                                                                                                                    99. model/screenless/transfer_payment
                                                                                                                                                    100. -
                                                                                                                                                    101. model/tokenization/tokenization
                                                                                                                                                    102. -
                                                                                                                                                    103. model/tpay_configuration
                                                                                                                                                    104. -
                                                                                                                                                    105. model/tpay_environment
                                                                                                                                                    106. -
                                                                                                                                                    107. model/transaction/single_transaction
                                                                                                                                                    108. -
                                                                                                                                                    109. model/transaction/token_payment
                                                                                                                                                    110. -
                                                                                                                                                    111. model/transaction/transaction
                                                                                                                                                    112. -
                                                                                                                                                    113. model/wallet_configuration
                                                                                                                                                    114. -
                                                                                                                                                    115. tpay_button
                                                                                                                                                    116. -
                                                                                                                                                    117. tpay_method_channel
                                                                                                                                                    118. -
                                                                                                                                                    119. tpay_platform_interface
                                                                                                                                                    120. -
                                                                                                                                                    121. util/google_pay_configuration_util
                                                                                                                                                    122. -
                                                                                                                                                    123. util/google_pay_util
                                                                                                                                                    124. -
                                                                                                                                                    125. util/payment_channels_util
                                                                                                                                                    126. -
                                                                                                                                                    127. util/result_util
                                                                                                                                                    128. -
                                                                                                                                                    129. util/screenless_result_util
                                                                                                                                                    130. +
                                                                                                                                                    131. model/apple_pay_configuration
                                                                                                                                                    132. +
                                                                                                                                                    133. model/certificate_pinning_configuration
                                                                                                                                                    134. +
                                                                                                                                                    135. model/google_pay_configuration
                                                                                                                                                    136. +
                                                                                                                                                    137. model/language/language
                                                                                                                                                    138. +
                                                                                                                                                    139. model/language/languages
                                                                                                                                                    140. +
                                                                                                                                                    141. model/language/localized_string
                                                                                                                                                    142. +
                                                                                                                                                    143. model/merchant/merchant
                                                                                                                                                    144. +
                                                                                                                                                    145. model/merchant/merchant_authorization
                                                                                                                                                    146. +
                                                                                                                                                    147. model/merchant/merchant_details
                                                                                                                                                    148. +
                                                                                                                                                    149. model/payer/payer
                                                                                                                                                    150. +
                                                                                                                                                    151. model/payer/payer_address
                                                                                                                                                    152. +
                                                                                                                                                    153. model/payer/payer_context
                                                                                                                                                    154. +
                                                                                                                                                    155. model/paymentChannel/payment_channel
                                                                                                                                                    156. +
                                                                                                                                                    157. model/paymentChannel/payment_constraint
                                                                                                                                                    158. +
                                                                                                                                                    159. model/paymentChannel/payment_group
                                                                                                                                                    160. +
                                                                                                                                                    161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                    162. +
                                                                                                                                                    163. model/paymentMethod/blik_alias
                                                                                                                                                    164. +
                                                                                                                                                    165. model/paymentMethod/credit_card_brand
                                                                                                                                                    166. +
                                                                                                                                                    167. model/paymentMethod/digital_wallet
                                                                                                                                                    168. +
                                                                                                                                                    169. model/paymentMethod/installment_payment
                                                                                                                                                    170. +
                                                                                                                                                    171. model/paymentMethod/payment_method
                                                                                                                                                    172. +
                                                                                                                                                    173. model/paymentMethod/payment_methods
                                                                                                                                                    174. +
                                                                                                                                                    175. model/paymentMethod/tokenized_card
                                                                                                                                                    176. +
                                                                                                                                                    177. model/result/google_pay_configure_result
                                                                                                                                                    178. +
                                                                                                                                                    179. model/result/google_pay_open_result
                                                                                                                                                    180. +
                                                                                                                                                    181. model/result/payment_channels_result
                                                                                                                                                    182. +
                                                                                                                                                    183. model/result/result
                                                                                                                                                    184. +
                                                                                                                                                    185. model/result/screenless_result
                                                                                                                                                    186. +
                                                                                                                                                    187. model/screenless/ambiguous_alias
                                                                                                                                                    188. +
                                                                                                                                                    189. model/screenless/ambiguous_blik_payment
                                                                                                                                                    190. +
                                                                                                                                                    191. model/screenless/apple_pay_payment
                                                                                                                                                    192. +
                                                                                                                                                    193. model/screenless/blik_payment
                                                                                                                                                    194. +
                                                                                                                                                    195. model/screenless/callbacks
                                                                                                                                                    196. +
                                                                                                                                                    197. model/screenless/credit_card
                                                                                                                                                    198. +
                                                                                                                                                    199. model/screenless/credit_card_config
                                                                                                                                                    200. +
                                                                                                                                                    201. model/screenless/credit_card_payment
                                                                                                                                                    202. +
                                                                                                                                                    203. model/screenless/expiration_date
                                                                                                                                                    204. +
                                                                                                                                                    205. model/screenless/google_pay_environment
                                                                                                                                                    206. +
                                                                                                                                                    207. model/screenless/google_pay_payment
                                                                                                                                                    208. +
                                                                                                                                                    209. model/screenless/google_pay_utils_configuration
                                                                                                                                                    210. +
                                                                                                                                                    211. model/screenless/notifications
                                                                                                                                                    212. +
                                                                                                                                                    213. model/screenless/pay_po_payment
                                                                                                                                                    214. +
                                                                                                                                                    215. model/screenless/payment_details
                                                                                                                                                    216. +
                                                                                                                                                    217. model/screenless/raty_pekao_payment
                                                                                                                                                    218. +
                                                                                                                                                    219. model/screenless/recursive
                                                                                                                                                    220. +
                                                                                                                                                    221. model/screenless/redirects
                                                                                                                                                    222. +
                                                                                                                                                    223. model/screenless/screenless_payment
                                                                                                                                                    224. +
                                                                                                                                                    225. model/screenless/transfer_method
                                                                                                                                                    226. +
                                                                                                                                                    227. model/screenless/transfer_payment
                                                                                                                                                    228. +
                                                                                                                                                    229. model/tokenization/tokenization
                                                                                                                                                    230. +
                                                                                                                                                    231. model/tpay_configuration
                                                                                                                                                    232. +
                                                                                                                                                    233. model/tpay_environment
                                                                                                                                                    234. +
                                                                                                                                                    235. model/transaction/single_transaction
                                                                                                                                                    236. +
                                                                                                                                                    237. model/transaction/token_payment
                                                                                                                                                    238. +
                                                                                                                                                    239. model/transaction/transaction
                                                                                                                                                    240. +
                                                                                                                                                    241. model/wallet_configuration
                                                                                                                                                    242. +
                                                                                                                                                    243. tpay_button
                                                                                                                                                    244. +
                                                                                                                                                    245. tpay_method_channel
                                                                                                                                                    246. +
                                                                                                                                                    247. tpay_platform_interface
                                                                                                                                                    248. +
                                                                                                                                                    249. util/google_pay_configuration_util
                                                                                                                                                    250. +
                                                                                                                                                    251. util/google_pay_util
                                                                                                                                                    252. +
                                                                                                                                                    253. util/payment_channels_util
                                                                                                                                                    254. +
                                                                                                                                                    255. util/result_util
                                                                                                                                                    256. +
                                                                                                                                                    257. util/screenless_result_util
                                                                                                                                                    @@ -177,7 +174,7 @@
                                                                                                                                                    google_pay_utils_configuration library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library-sidebar.html b/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library-sidebar.html index dc8ac179..9045de2a 100644 --- a/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library-sidebar.html +++ b/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                      -
                                                                                                                                                    1. Classes
                                                                                                                                                    2. +
                                                                                                                                                    3. Classes
                                                                                                                                                    4. GooglePayUtilsConfiguration
                                                                                                                                                    5. diff --git a/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library.html b/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library.html index 90b197da..37d9c976 100644 --- a/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library.html +++ b/doc/model_screenless_google_pay_utils_configuration/model_screenless_google_pay_utils_configuration-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                      New URL

                                                                                                                                                      +

                                                                                                                                                      New URL

                                                                                                                                                      \ No newline at end of file diff --git a/doc/model_screenless_notifications/Notifications-class-sidebar.html b/doc/model_screenless_notifications/Notifications-class-sidebar.html index 52f171e9..dab28c26 100644 --- a/doc/model_screenless_notifications/Notifications-class-sidebar.html +++ b/doc/model_screenless_notifications/Notifications-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                      1. Constructors
                                                                                                                                                      2. -
                                                                                                                                                      3. Notifications
                                                                                                                                                      4. +
                                                                                                                                                      5. new
                                                                                                                                                      6. fromJson
                                                                                                                                                      7. diff --git a/doc/model_screenless_notifications/Notifications-class.html b/doc/model_screenless_notifications/Notifications-class.html index 48ec4782..6b4dfa8d 100644 --- a/doc/model_screenless_notifications/Notifications-class.html +++ b/doc/model_screenless_notifications/Notifications-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                        Notifications
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Notifications class
                                                                                                                                                        Annotations
                                                                                                                                                        @@ -91,7 +88,7 @@

                                                                                                                                                        Notifications class

                                                                                                                                                        Constructors

                                                                                                                                                        -
                                                                                                                                                        +
                                                                                                                                                        Notifications({required String url, required String email})
                                                                                                                                                        @@ -245,7 +242,7 @@

                                                                                                                                                        Operators

                                                                                                                                                        @@ -258,7 +255,7 @@
                                                                                                                                                        notifications library
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/Notifications.fromJson.html b/doc/model_screenless_notifications/Notifications/Notifications.fromJson.html index fa37bafd..2336035e 100644 --- a/doc/model_screenless_notifications/Notifications/Notifications.fromJson.html +++ b/doc/model_screenless_notifications/Notifications/Notifications.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation

                                                                                                                                                        @@ -94,7 +91,7 @@
                                                                                                                                                        Notifications class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/Notifications.html b/doc/model_screenless_notifications/Notifications/Notifications.html index 5e430b48..a7a6070c 100644 --- a/doc/model_screenless_notifications/Notifications/Notifications.html +++ b/doc/model_screenless_notifications/Notifications/Notifications.html @@ -4,8 +4,8 @@ - - Notifications constructor - Notifications - notifications library - Dart API + + Notifications.new constructor - Notifications - notifications library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                        Notifications
                                                                                                                                                        +
                                                                                                                                                        Notifications.new
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation
                                                                                                                                                        Notifications class
                                                                                                                                                        @@ -98,7 +95,7 @@
                                                                                                                                                        Notifications class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/email.html b/doc/model_screenless_notifications/Notifications/email.html index 3aaa1de8..b08e9d72 100644 --- a/doc/model_screenless_notifications/Notifications/email.html +++ b/doc/model_screenless_notifications/Notifications/email.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                        Notifications class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/toJson.html b/doc/model_screenless_notifications/Notifications/toJson.html index dbddd596..3e865b59 100644 --- a/doc/model_screenless_notifications/Notifications/toJson.html +++ b/doc/model_screenless_notifications/Notifications/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                        Notifications class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/url.html b/doc/model_screenless_notifications/Notifications/url.html index a1c0504f..99732ccc 100644 --- a/doc/model_screenless_notifications/Notifications/url.html +++ b/doc/model_screenless_notifications/Notifications/url.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                        Notifications class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/index.html b/doc/model_screenless_notifications/index.html index f1523137..f3c63c01 100644 --- a/doc/model_screenless_notifications/index.html +++ b/doc/model_screenless_notifications/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Classes
                                                                                                                                                        flutter_tpay package
                                                                                                                                                        1. Libraries
                                                                                                                                                        2. -
                                                                                                                                                        3. model/apple_pay_configuration
                                                                                                                                                        4. -
                                                                                                                                                        5. model/certificate_pinning_configuration
                                                                                                                                                        6. -
                                                                                                                                                        7. model/google_pay_configuration
                                                                                                                                                        8. -
                                                                                                                                                        9. model/language/language
                                                                                                                                                        10. -
                                                                                                                                                        11. model/language/languages
                                                                                                                                                        12. -
                                                                                                                                                        13. model/language/localized_string
                                                                                                                                                        14. -
                                                                                                                                                        15. model/merchant/merchant
                                                                                                                                                        16. -
                                                                                                                                                        17. model/merchant/merchant_authorization
                                                                                                                                                        18. -
                                                                                                                                                        19. model/merchant/merchant_details
                                                                                                                                                        20. -
                                                                                                                                                        21. model/payer/payer
                                                                                                                                                        22. -
                                                                                                                                                        23. model/payer/payer_address
                                                                                                                                                        24. -
                                                                                                                                                        25. model/payer/payer_context
                                                                                                                                                        26. -
                                                                                                                                                        27. model/paymentChannel/payment_channel
                                                                                                                                                        28. -
                                                                                                                                                        29. model/paymentChannel/payment_constraint
                                                                                                                                                        30. -
                                                                                                                                                        31. model/paymentChannel/payment_group
                                                                                                                                                        32. -
                                                                                                                                                        33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                        34. -
                                                                                                                                                        35. model/paymentMethod/blik_alias
                                                                                                                                                        36. -
                                                                                                                                                        37. model/paymentMethod/credit_card_brand
                                                                                                                                                        38. -
                                                                                                                                                        39. model/paymentMethod/digital_wallet
                                                                                                                                                        40. -
                                                                                                                                                        41. model/paymentMethod/installment_payment
                                                                                                                                                        42. -
                                                                                                                                                        43. model/paymentMethod/payment_method
                                                                                                                                                        44. -
                                                                                                                                                        45. model/paymentMethod/payment_methods
                                                                                                                                                        46. -
                                                                                                                                                        47. model/paymentMethod/tokenized_card
                                                                                                                                                        48. -
                                                                                                                                                        49. model/result/google_pay_configure_result
                                                                                                                                                        50. -
                                                                                                                                                        51. model/result/google_pay_open_result
                                                                                                                                                        52. -
                                                                                                                                                        53. model/result/payment_channels_result
                                                                                                                                                        54. -
                                                                                                                                                        55. model/result/result
                                                                                                                                                        56. -
                                                                                                                                                        57. model/result/screenless_result
                                                                                                                                                        58. -
                                                                                                                                                        59. model/screenless/ambiguous_alias
                                                                                                                                                        60. -
                                                                                                                                                        61. model/screenless/ambiguous_blik_payment
                                                                                                                                                        62. -
                                                                                                                                                        63. model/screenless/apple_pay_payment
                                                                                                                                                        64. -
                                                                                                                                                        65. model/screenless/blik_payment
                                                                                                                                                        66. -
                                                                                                                                                        67. model/screenless/callbacks
                                                                                                                                                        68. -
                                                                                                                                                        69. model/screenless/credit_card
                                                                                                                                                        70. -
                                                                                                                                                        71. model/screenless/credit_card_config
                                                                                                                                                        72. -
                                                                                                                                                        73. model/screenless/credit_card_payment
                                                                                                                                                        74. -
                                                                                                                                                        75. model/screenless/expiration_date
                                                                                                                                                        76. -
                                                                                                                                                        77. model/screenless/google_pay_environment
                                                                                                                                                        78. -
                                                                                                                                                        79. model/screenless/google_pay_payment
                                                                                                                                                        80. -
                                                                                                                                                        81. model/screenless/google_pay_utils_configuration
                                                                                                                                                        82. -
                                                                                                                                                        83. model/screenless/notifications
                                                                                                                                                        84. -
                                                                                                                                                        85. model/screenless/pay_po_payment
                                                                                                                                                        86. -
                                                                                                                                                        87. model/screenless/payment_details
                                                                                                                                                        88. -
                                                                                                                                                        89. model/screenless/raty_pekao_payment
                                                                                                                                                        90. -
                                                                                                                                                        91. model/screenless/recursive
                                                                                                                                                        92. -
                                                                                                                                                        93. model/screenless/redirects
                                                                                                                                                        94. -
                                                                                                                                                        95. model/screenless/screenless_payment
                                                                                                                                                        96. -
                                                                                                                                                        97. model/screenless/transfer_method
                                                                                                                                                        98. -
                                                                                                                                                        99. model/screenless/transfer_payment
                                                                                                                                                        100. -
                                                                                                                                                        101. model/tokenization/tokenization
                                                                                                                                                        102. -
                                                                                                                                                        103. model/tpay_configuration
                                                                                                                                                        104. -
                                                                                                                                                        105. model/tpay_environment
                                                                                                                                                        106. -
                                                                                                                                                        107. model/transaction/single_transaction
                                                                                                                                                        108. -
                                                                                                                                                        109. model/transaction/token_payment
                                                                                                                                                        110. -
                                                                                                                                                        111. model/transaction/transaction
                                                                                                                                                        112. -
                                                                                                                                                        113. model/wallet_configuration
                                                                                                                                                        114. -
                                                                                                                                                        115. tpay_button
                                                                                                                                                        116. -
                                                                                                                                                        117. tpay_method_channel
                                                                                                                                                        118. -
                                                                                                                                                        119. tpay_platform_interface
                                                                                                                                                        120. -
                                                                                                                                                        121. util/google_pay_configuration_util
                                                                                                                                                        122. -
                                                                                                                                                        123. util/google_pay_util
                                                                                                                                                        124. -
                                                                                                                                                        125. util/payment_channels_util
                                                                                                                                                        126. -
                                                                                                                                                        127. util/result_util
                                                                                                                                                        128. -
                                                                                                                                                        129. util/screenless_result_util
                                                                                                                                                        130. +
                                                                                                                                                        131. model/apple_pay_configuration
                                                                                                                                                        132. +
                                                                                                                                                        133. model/certificate_pinning_configuration
                                                                                                                                                        134. +
                                                                                                                                                        135. model/google_pay_configuration
                                                                                                                                                        136. +
                                                                                                                                                        137. model/language/language
                                                                                                                                                        138. +
                                                                                                                                                        139. model/language/languages
                                                                                                                                                        140. +
                                                                                                                                                        141. model/language/localized_string
                                                                                                                                                        142. +
                                                                                                                                                        143. model/merchant/merchant
                                                                                                                                                        144. +
                                                                                                                                                        145. model/merchant/merchant_authorization
                                                                                                                                                        146. +
                                                                                                                                                        147. model/merchant/merchant_details
                                                                                                                                                        148. +
                                                                                                                                                        149. model/payer/payer
                                                                                                                                                        150. +
                                                                                                                                                        151. model/payer/payer_address
                                                                                                                                                        152. +
                                                                                                                                                        153. model/payer/payer_context
                                                                                                                                                        154. +
                                                                                                                                                        155. model/paymentChannel/payment_channel
                                                                                                                                                        156. +
                                                                                                                                                        157. model/paymentChannel/payment_constraint
                                                                                                                                                        158. +
                                                                                                                                                        159. model/paymentChannel/payment_group
                                                                                                                                                        160. +
                                                                                                                                                        161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                        162. +
                                                                                                                                                        163. model/paymentMethod/blik_alias
                                                                                                                                                        164. +
                                                                                                                                                        165. model/paymentMethod/credit_card_brand
                                                                                                                                                        166. +
                                                                                                                                                        167. model/paymentMethod/digital_wallet
                                                                                                                                                        168. +
                                                                                                                                                        169. model/paymentMethod/installment_payment
                                                                                                                                                        170. +
                                                                                                                                                        171. model/paymentMethod/payment_method
                                                                                                                                                        172. +
                                                                                                                                                        173. model/paymentMethod/payment_methods
                                                                                                                                                        174. +
                                                                                                                                                        175. model/paymentMethod/tokenized_card
                                                                                                                                                        176. +
                                                                                                                                                        177. model/result/google_pay_configure_result
                                                                                                                                                        178. +
                                                                                                                                                        179. model/result/google_pay_open_result
                                                                                                                                                        180. +
                                                                                                                                                        181. model/result/payment_channels_result
                                                                                                                                                        182. +
                                                                                                                                                        183. model/result/result
                                                                                                                                                        184. +
                                                                                                                                                        185. model/result/screenless_result
                                                                                                                                                        186. +
                                                                                                                                                        187. model/screenless/ambiguous_alias
                                                                                                                                                        188. +
                                                                                                                                                        189. model/screenless/ambiguous_blik_payment
                                                                                                                                                        190. +
                                                                                                                                                        191. model/screenless/apple_pay_payment
                                                                                                                                                        192. +
                                                                                                                                                        193. model/screenless/blik_payment
                                                                                                                                                        194. +
                                                                                                                                                        195. model/screenless/callbacks
                                                                                                                                                        196. +
                                                                                                                                                        197. model/screenless/credit_card
                                                                                                                                                        198. +
                                                                                                                                                        199. model/screenless/credit_card_config
                                                                                                                                                        200. +
                                                                                                                                                        201. model/screenless/credit_card_payment
                                                                                                                                                        202. +
                                                                                                                                                        203. model/screenless/expiration_date
                                                                                                                                                        204. +
                                                                                                                                                        205. model/screenless/google_pay_environment
                                                                                                                                                        206. +
                                                                                                                                                        207. model/screenless/google_pay_payment
                                                                                                                                                        208. +
                                                                                                                                                        209. model/screenless/google_pay_utils_configuration
                                                                                                                                                        210. +
                                                                                                                                                        211. model/screenless/notifications
                                                                                                                                                        212. +
                                                                                                                                                        213. model/screenless/pay_po_payment
                                                                                                                                                        214. +
                                                                                                                                                        215. model/screenless/payment_details
                                                                                                                                                        216. +
                                                                                                                                                        217. model/screenless/raty_pekao_payment
                                                                                                                                                        218. +
                                                                                                                                                        219. model/screenless/recursive
                                                                                                                                                        220. +
                                                                                                                                                        221. model/screenless/redirects
                                                                                                                                                        222. +
                                                                                                                                                        223. model/screenless/screenless_payment
                                                                                                                                                        224. +
                                                                                                                                                        225. model/screenless/transfer_method
                                                                                                                                                        226. +
                                                                                                                                                        227. model/screenless/transfer_payment
                                                                                                                                                        228. +
                                                                                                                                                        229. model/tokenization/tokenization
                                                                                                                                                        230. +
                                                                                                                                                        231. model/tpay_configuration
                                                                                                                                                        232. +
                                                                                                                                                        233. model/tpay_environment
                                                                                                                                                        234. +
                                                                                                                                                        235. model/transaction/single_transaction
                                                                                                                                                        236. +
                                                                                                                                                        237. model/transaction/token_payment
                                                                                                                                                        238. +
                                                                                                                                                        239. model/transaction/transaction
                                                                                                                                                        240. +
                                                                                                                                                        241. model/wallet_configuration
                                                                                                                                                        242. +
                                                                                                                                                        243. tpay_button
                                                                                                                                                        244. +
                                                                                                                                                        245. tpay_method_channel
                                                                                                                                                        246. +
                                                                                                                                                        247. tpay_platform_interface
                                                                                                                                                        248. +
                                                                                                                                                        249. util/google_pay_configuration_util
                                                                                                                                                        250. +
                                                                                                                                                        251. util/google_pay_util
                                                                                                                                                        252. +
                                                                                                                                                        253. util/payment_channels_util
                                                                                                                                                        254. +
                                                                                                                                                        255. util/result_util
                                                                                                                                                        256. +
                                                                                                                                                        257. util/screenless_result_util
                                                                                                                                                        @@ -177,7 +174,7 @@
                                                                                                                                                        notifications library
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_notifications/model_screenless_notifications-library-sidebar.html b/doc/model_screenless_notifications/model_screenless_notifications-library-sidebar.html index ee59a2d0..79f5b193 100644 --- a/doc/model_screenless_notifications/model_screenless_notifications-library-sidebar.html +++ b/doc/model_screenless_notifications/model_screenless_notifications-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                          -
                                                                                                                                                        1. Classes
                                                                                                                                                        2. +
                                                                                                                                                        3. Classes
                                                                                                                                                        4. Notifications
                                                                                                                                                        5. diff --git a/doc/model_screenless_notifications/model_screenless_notifications-library.html b/doc/model_screenless_notifications/model_screenless_notifications-library.html index e56fd95b..39a204c1 100644 --- a/doc/model_screenless_notifications/model_screenless_notifications-library.html +++ b/doc/model_screenless_notifications/model_screenless_notifications-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                          New URL

                                                                                                                                                          +

                                                                                                                                                          New URL

                                                                                                                                                          \ No newline at end of file diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment-class-sidebar.html b/doc/model_screenless_pay_po_payment/PayPoPayment-class-sidebar.html index d307feb3..d8747d02 100644 --- a/doc/model_screenless_pay_po_payment/PayPoPayment-class-sidebar.html +++ b/doc/model_screenless_pay_po_payment/PayPoPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                          1. Constructors
                                                                                                                                                          2. -
                                                                                                                                                          3. PayPoPayment
                                                                                                                                                          4. +
                                                                                                                                                          5. new
                                                                                                                                                          6. fromJson
                                                                                                                                                          7. diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment-class.html b/doc/model_screenless_pay_po_payment/PayPoPayment-class.html index c6507880..e5596835 100644 --- a/doc/model_screenless_pay_po_payment/PayPoPayment-class.html +++ b/doc/model_screenless_pay_po_payment/PayPoPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                            PayPoPayment
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            PayPoPayment class
                                                                                                                                                            Annotations
                                                                                                                                                            @@ -94,8 +91,8 @@

                                                                                                                                                            PayPoPayment class

                                                                                                                                                            Constructors

                                                                                                                                                            -
                                                                                                                                                            - PayPoPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks}) +
                                                                                                                                                            + PayPoPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks callbacks})
                                                                                                                                                            @@ -117,7 +114,7 @@

                                                                                                                                                            Properties

                                                                                                                                                            callbacks - Callbacks? + Callbacks
                                                                                                                                                            @@ -260,7 +257,7 @@

                                                                                                                                                            Operators

                                                                                                                                                            @@ -273,7 +270,7 @@
                                                                                                                                                            pay_po_payment library
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.fromJson.html b/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.fromJson.html index eda1678f..61a9c01c 100644 --- a/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.fromJson.html +++ b/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            Implementation

                                                                                                                                                            @@ -94,7 +91,7 @@
                                                                                                                                                            PayPoPayment class
                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                            diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.html b/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.html index e9da7205..f34ab680 100644 --- a/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.html +++ b/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.html @@ -4,8 +4,8 @@ - - PayPoPayment constructor - PayPoPayment - pay_po_payment library - Dart API + + PayPoPayment.new constructor - PayPoPayment - pay_po_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                            PayPoPayment
                                                                                                                                                            +
                                                                                                                                                            PayPoPayment.new
                                                                                                                                                            -
                                                                                                                                                            - -
                                                                                                                                                            +
                                                                                                                                                            PayPoPayment constructor PayPoPayment({
                                                                                                                                                            1. required PaymentDetails paymentDetails,
                                                                                                                                                            2. required Payer payer,
                                                                                                                                                            3. -
                                                                                                                                                            4. required Callbacks? callbacks,
                                                                                                                                                            5. +
                                                                                                                                                            6. required Callbacks callbacks,
                                                                                                                                                            })
                                                                                                                                              @@ -86,9 +83,9 @@

                                                                                                                                              Implementation

                                                                                                                                              PayPoPayment class
                                                                                                                                              @@ -100,7 +97,7 @@
                                                                                                                                              PayPoPayment class
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment/toJson.html b/doc/model_screenless_pay_po_payment/PayPoPayment/toJson.html index 96d8a872..483f2c89 100644 --- a/doc/model_screenless_pay_po_payment/PayPoPayment/toJson.html +++ b/doc/model_screenless_pay_po_payment/PayPoPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                                              PayPoPayment class
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_screenless_pay_po_payment/index.html b/doc/model_screenless_pay_po_payment/index.html index f0d340a3..0fb8cfb5 100644 --- a/doc/model_screenless_pay_po_payment/index.html +++ b/doc/model_screenless_pay_po_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              Classes
                                                                                                                                              flutter_tpay package
                                                                                                                                              1. Libraries
                                                                                                                                              2. -
                                                                                                                                              3. model/apple_pay_configuration
                                                                                                                                              4. -
                                                                                                                                              5. model/certificate_pinning_configuration
                                                                                                                                              6. -
                                                                                                                                              7. model/google_pay_configuration
                                                                                                                                              8. -
                                                                                                                                              9. model/language/language
                                                                                                                                              10. -
                                                                                                                                              11. model/language/languages
                                                                                                                                              12. -
                                                                                                                                              13. model/language/localized_string
                                                                                                                                              14. -
                                                                                                                                              15. model/merchant/merchant
                                                                                                                                              16. -
                                                                                                                                              17. model/merchant/merchant_authorization
                                                                                                                                              18. -
                                                                                                                                              19. model/merchant/merchant_details
                                                                                                                                              20. -
                                                                                                                                              21. model/payer/payer
                                                                                                                                              22. -
                                                                                                                                              23. model/payer/payer_address
                                                                                                                                              24. -
                                                                                                                                              25. model/payer/payer_context
                                                                                                                                              26. -
                                                                                                                                              27. model/paymentChannel/payment_channel
                                                                                                                                              28. -
                                                                                                                                              29. model/paymentChannel/payment_constraint
                                                                                                                                              30. -
                                                                                                                                              31. model/paymentChannel/payment_group
                                                                                                                                              32. -
                                                                                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                                                                                              34. -
                                                                                                                                              35. model/paymentMethod/blik_alias
                                                                                                                                              36. -
                                                                                                                                              37. model/paymentMethod/credit_card_brand
                                                                                                                                              38. -
                                                                                                                                              39. model/paymentMethod/digital_wallet
                                                                                                                                              40. -
                                                                                                                                              41. model/paymentMethod/installment_payment
                                                                                                                                              42. -
                                                                                                                                              43. model/paymentMethod/payment_method
                                                                                                                                              44. -
                                                                                                                                              45. model/paymentMethod/payment_methods
                                                                                                                                              46. -
                                                                                                                                              47. model/paymentMethod/tokenized_card
                                                                                                                                              48. -
                                                                                                                                              49. model/result/google_pay_configure_result
                                                                                                                                              50. -
                                                                                                                                              51. model/result/google_pay_open_result
                                                                                                                                              52. -
                                                                                                                                              53. model/result/payment_channels_result
                                                                                                                                              54. -
                                                                                                                                              55. model/result/result
                                                                                                                                              56. -
                                                                                                                                              57. model/result/screenless_result
                                                                                                                                              58. -
                                                                                                                                              59. model/screenless/ambiguous_alias
                                                                                                                                              60. -
                                                                                                                                              61. model/screenless/ambiguous_blik_payment
                                                                                                                                              62. -
                                                                                                                                              63. model/screenless/apple_pay_payment
                                                                                                                                              64. -
                                                                                                                                              65. model/screenless/blik_payment
                                                                                                                                              66. -
                                                                                                                                              67. model/screenless/callbacks
                                                                                                                                              68. -
                                                                                                                                              69. model/screenless/credit_card
                                                                                                                                              70. -
                                                                                                                                              71. model/screenless/credit_card_config
                                                                                                                                              72. -
                                                                                                                                              73. model/screenless/credit_card_payment
                                                                                                                                              74. -
                                                                                                                                              75. model/screenless/expiration_date
                                                                                                                                              76. -
                                                                                                                                              77. model/screenless/google_pay_environment
                                                                                                                                              78. -
                                                                                                                                              79. model/screenless/google_pay_payment
                                                                                                                                              80. -
                                                                                                                                              81. model/screenless/google_pay_utils_configuration
                                                                                                                                              82. -
                                                                                                                                              83. model/screenless/notifications
                                                                                                                                              84. -
                                                                                                                                              85. model/screenless/pay_po_payment
                                                                                                                                              86. -
                                                                                                                                              87. model/screenless/payment_details
                                                                                                                                              88. -
                                                                                                                                              89. model/screenless/raty_pekao_payment
                                                                                                                                              90. -
                                                                                                                                              91. model/screenless/recursive
                                                                                                                                              92. -
                                                                                                                                              93. model/screenless/redirects
                                                                                                                                              94. -
                                                                                                                                              95. model/screenless/screenless_payment
                                                                                                                                              96. -
                                                                                                                                              97. model/screenless/transfer_method
                                                                                                                                              98. -
                                                                                                                                              99. model/screenless/transfer_payment
                                                                                                                                              100. -
                                                                                                                                              101. model/tokenization/tokenization
                                                                                                                                              102. -
                                                                                                                                              103. model/tpay_configuration
                                                                                                                                              104. -
                                                                                                                                              105. model/tpay_environment
                                                                                                                                              106. -
                                                                                                                                              107. model/transaction/single_transaction
                                                                                                                                              108. -
                                                                                                                                              109. model/transaction/token_payment
                                                                                                                                              110. -
                                                                                                                                              111. model/transaction/transaction
                                                                                                                                              112. -
                                                                                                                                              113. model/wallet_configuration
                                                                                                                                              114. -
                                                                                                                                              115. tpay_button
                                                                                                                                              116. -
                                                                                                                                              117. tpay_method_channel
                                                                                                                                              118. -
                                                                                                                                              119. tpay_platform_interface
                                                                                                                                              120. -
                                                                                                                                              121. util/google_pay_configuration_util
                                                                                                                                              122. -
                                                                                                                                              123. util/google_pay_util
                                                                                                                                              124. -
                                                                                                                                              125. util/payment_channels_util
                                                                                                                                              126. -
                                                                                                                                              127. util/result_util
                                                                                                                                              128. -
                                                                                                                                              129. util/screenless_result_util
                                                                                                                                              130. +
                                                                                                                                              131. model/apple_pay_configuration
                                                                                                                                              132. +
                                                                                                                                              133. model/certificate_pinning_configuration
                                                                                                                                              134. +
                                                                                                                                              135. model/google_pay_configuration
                                                                                                                                              136. +
                                                                                                                                              137. model/language/language
                                                                                                                                              138. +
                                                                                                                                              139. model/language/languages
                                                                                                                                              140. +
                                                                                                                                              141. model/language/localized_string
                                                                                                                                              142. +
                                                                                                                                              143. model/merchant/merchant
                                                                                                                                              144. +
                                                                                                                                              145. model/merchant/merchant_authorization
                                                                                                                                              146. +
                                                                                                                                              147. model/merchant/merchant_details
                                                                                                                                              148. +
                                                                                                                                              149. model/payer/payer
                                                                                                                                              150. +
                                                                                                                                              151. model/payer/payer_address
                                                                                                                                              152. +
                                                                                                                                              153. model/payer/payer_context
                                                                                                                                              154. +
                                                                                                                                              155. model/paymentChannel/payment_channel
                                                                                                                                              156. +
                                                                                                                                              157. model/paymentChannel/payment_constraint
                                                                                                                                              158. +
                                                                                                                                              159. model/paymentChannel/payment_group
                                                                                                                                              160. +
                                                                                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                                                                                              162. +
                                                                                                                                              163. model/paymentMethod/blik_alias
                                                                                                                                              164. +
                                                                                                                                              165. model/paymentMethod/credit_card_brand
                                                                                                                                              166. +
                                                                                                                                              167. model/paymentMethod/digital_wallet
                                                                                                                                              168. +
                                                                                                                                              169. model/paymentMethod/installment_payment
                                                                                                                                              170. +
                                                                                                                                              171. model/paymentMethod/payment_method
                                                                                                                                              172. +
                                                                                                                                              173. model/paymentMethod/payment_methods
                                                                                                                                              174. +
                                                                                                                                              175. model/paymentMethod/tokenized_card
                                                                                                                                              176. +
                                                                                                                                              177. model/result/google_pay_configure_result
                                                                                                                                              178. +
                                                                                                                                              179. model/result/google_pay_open_result
                                                                                                                                              180. +
                                                                                                                                              181. model/result/payment_channels_result
                                                                                                                                              182. +
                                                                                                                                              183. model/result/result
                                                                                                                                              184. +
                                                                                                                                              185. model/result/screenless_result
                                                                                                                                              186. +
                                                                                                                                              187. model/screenless/ambiguous_alias
                                                                                                                                              188. +
                                                                                                                                              189. model/screenless/ambiguous_blik_payment
                                                                                                                                              190. +
                                                                                                                                              191. model/screenless/apple_pay_payment
                                                                                                                                              192. +
                                                                                                                                              193. model/screenless/blik_payment
                                                                                                                                              194. +
                                                                                                                                              195. model/screenless/callbacks
                                                                                                                                              196. +
                                                                                                                                              197. model/screenless/credit_card
                                                                                                                                              198. +
                                                                                                                                              199. model/screenless/credit_card_config
                                                                                                                                              200. +
                                                                                                                                              201. model/screenless/credit_card_payment
                                                                                                                                              202. +
                                                                                                                                              203. model/screenless/expiration_date
                                                                                                                                              204. +
                                                                                                                                              205. model/screenless/google_pay_environment
                                                                                                                                              206. +
                                                                                                                                              207. model/screenless/google_pay_payment
                                                                                                                                              208. +
                                                                                                                                              209. model/screenless/google_pay_utils_configuration
                                                                                                                                              210. +
                                                                                                                                              211. model/screenless/notifications
                                                                                                                                              212. +
                                                                                                                                              213. model/screenless/pay_po_payment
                                                                                                                                              214. +
                                                                                                                                              215. model/screenless/payment_details
                                                                                                                                              216. +
                                                                                                                                              217. model/screenless/raty_pekao_payment
                                                                                                                                              218. +
                                                                                                                                              219. model/screenless/recursive
                                                                                                                                              220. +
                                                                                                                                              221. model/screenless/redirects
                                                                                                                                              222. +
                                                                                                                                              223. model/screenless/screenless_payment
                                                                                                                                              224. +
                                                                                                                                              225. model/screenless/transfer_method
                                                                                                                                              226. +
                                                                                                                                              227. model/screenless/transfer_payment
                                                                                                                                              228. +
                                                                                                                                              229. model/tokenization/tokenization
                                                                                                                                              230. +
                                                                                                                                              231. model/tpay_configuration
                                                                                                                                              232. +
                                                                                                                                              233. model/tpay_environment
                                                                                                                                              234. +
                                                                                                                                              235. model/transaction/single_transaction
                                                                                                                                              236. +
                                                                                                                                              237. model/transaction/token_payment
                                                                                                                                              238. +
                                                                                                                                              239. model/transaction/transaction
                                                                                                                                              240. +
                                                                                                                                              241. model/wallet_configuration
                                                                                                                                              242. +
                                                                                                                                              243. tpay_button
                                                                                                                                              244. +
                                                                                                                                              245. tpay_method_channel
                                                                                                                                              246. +
                                                                                                                                              247. tpay_platform_interface
                                                                                                                                              248. +
                                                                                                                                              249. util/google_pay_configuration_util
                                                                                                                                              250. +
                                                                                                                                              251. util/google_pay_util
                                                                                                                                              252. +
                                                                                                                                              253. util/payment_channels_util
                                                                                                                                              254. +
                                                                                                                                              255. util/result_util
                                                                                                                                              256. +
                                                                                                                                              257. util/screenless_result_util
                                                                                                                                              @@ -176,7 +173,7 @@
                                                                                                                                              pay_po_payment library
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library-sidebar.html b/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library-sidebar.html index a1eb9503..05da154b 100644 --- a/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library-sidebar.html +++ b/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                -
                                                                                                                                              1. Classes
                                                                                                                                              2. +
                                                                                                                                              3. Classes
                                                                                                                                              4. PayPoPayment
                                                                                                                                              5. diff --git a/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library.html b/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library.html index cc3a88b3..10b73c2e 100644 --- a/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library.html +++ b/doc/model_screenless_pay_po_payment/model_screenless_pay_po_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                New URL

                                                                                                                                                +

                                                                                                                                                New URL

                                                                                                                                                \ No newline at end of file diff --git a/doc/model_screenless_payment_details/PaymentDetails-class-sidebar.html b/doc/model_screenless_payment_details/PaymentDetails-class-sidebar.html index 7e7200de..724af4db 100644 --- a/doc/model_screenless_payment_details/PaymentDetails-class-sidebar.html +++ b/doc/model_screenless_payment_details/PaymentDetails-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                1. Constructors
                                                                                                                                                2. -
                                                                                                                                                3. PaymentDetails
                                                                                                                                                4. +
                                                                                                                                                5. new
                                                                                                                                                6. fromJson
                                                                                                                                                7. diff --git a/doc/model_screenless_payment_details/PaymentDetails-class.html b/doc/model_screenless_payment_details/PaymentDetails-class.html index 9449a536..fa9095ad 100644 --- a/doc/model_screenless_payment_details/PaymentDetails-class.html +++ b/doc/model_screenless_payment_details/PaymentDetails-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                  PaymentDetails
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  Annotations
                                                                                                                                                  @@ -92,7 +89,7 @@

                                                                                                                                                  PaymentDetails class

                                                                                                                                                  Constructors

                                                                                                                                                  -
                                                                                                                                                  +
                                                                                                                                                  PaymentDetails({required double amount, required String description, String? hiddenDescription, Language? language})
                                                                                                                                                  @@ -270,7 +267,7 @@

                                                                                                                                                  Operators

                                                                                                                                                  @@ -283,7 +280,7 @@
                                                                                                                                                  payment_details library
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.fromJson.html b/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.fromJson.html index e98e577b..fce4fe9e 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.fromJson.html +++ b/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation

                                                                                                                                                  @@ -94,7 +91,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.html b/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.html index 3dc0eaf1..0bf46351 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.html +++ b/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.html @@ -4,8 +4,8 @@ - - PaymentDetails constructor - PaymentDetails - payment_details library - Dart API + + PaymentDetails.new constructor - PaymentDetails - payment_details library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                  PaymentDetails
                                                                                                                                                  +
                                                                                                                                                  PaymentDetails.new
                                                                                                                                                  -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  @@ -102,7 +99,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/amount.html b/doc/model_screenless_payment_details/PaymentDetails/amount.html index a54b6d1d..32b162b9 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/amount.html +++ b/doc/model_screenless_payment_details/PaymentDetails/amount.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/description.html b/doc/model_screenless_payment_details/PaymentDetails/description.html index e082dfb3..fca1ce6e 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/description.html +++ b/doc/model_screenless_payment_details/PaymentDetails/description.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/hiddenDescription.html b/doc/model_screenless_payment_details/PaymentDetails/hiddenDescription.html index e7754852..43cfcef6 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/hiddenDescription.html +++ b/doc/model_screenless_payment_details/PaymentDetails/hiddenDescription.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/language.html b/doc/model_screenless_payment_details/PaymentDetails/language.html index e146ae73..4ec487a8 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/language.html +++ b/doc/model_screenless_payment_details/PaymentDetails/language.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/PaymentDetails/toJson.html b/doc/model_screenless_payment_details/PaymentDetails/toJson.html index 3eadbefb..b96da9b7 100644 --- a/doc/model_screenless_payment_details/PaymentDetails/toJson.html +++ b/doc/model_screenless_payment_details/PaymentDetails/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                                  PaymentDetails class
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/index.html b/doc/model_screenless_payment_details/index.html index dd119f3d..b383a19c 100644 --- a/doc/model_screenless_payment_details/index.html +++ b/doc/model_screenless_payment_details/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                  - -
                                                                                                                                                  +
                                                                                                                                                  Classes
                                                                                                                                                  flutter_tpay package
                                                                                                                                                  1. Libraries
                                                                                                                                                  2. -
                                                                                                                                                  3. model/apple_pay_configuration
                                                                                                                                                  4. -
                                                                                                                                                  5. model/certificate_pinning_configuration
                                                                                                                                                  6. -
                                                                                                                                                  7. model/google_pay_configuration
                                                                                                                                                  8. -
                                                                                                                                                  9. model/language/language
                                                                                                                                                  10. -
                                                                                                                                                  11. model/language/languages
                                                                                                                                                  12. -
                                                                                                                                                  13. model/language/localized_string
                                                                                                                                                  14. -
                                                                                                                                                  15. model/merchant/merchant
                                                                                                                                                  16. -
                                                                                                                                                  17. model/merchant/merchant_authorization
                                                                                                                                                  18. -
                                                                                                                                                  19. model/merchant/merchant_details
                                                                                                                                                  20. -
                                                                                                                                                  21. model/payer/payer
                                                                                                                                                  22. -
                                                                                                                                                  23. model/payer/payer_address
                                                                                                                                                  24. -
                                                                                                                                                  25. model/payer/payer_context
                                                                                                                                                  26. -
                                                                                                                                                  27. model/paymentChannel/payment_channel
                                                                                                                                                  28. -
                                                                                                                                                  29. model/paymentChannel/payment_constraint
                                                                                                                                                  30. -
                                                                                                                                                  31. model/paymentChannel/payment_group
                                                                                                                                                  32. -
                                                                                                                                                  33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                  34. -
                                                                                                                                                  35. model/paymentMethod/blik_alias
                                                                                                                                                  36. -
                                                                                                                                                  37. model/paymentMethod/credit_card_brand
                                                                                                                                                  38. -
                                                                                                                                                  39. model/paymentMethod/digital_wallet
                                                                                                                                                  40. -
                                                                                                                                                  41. model/paymentMethod/installment_payment
                                                                                                                                                  42. -
                                                                                                                                                  43. model/paymentMethod/payment_method
                                                                                                                                                  44. -
                                                                                                                                                  45. model/paymentMethod/payment_methods
                                                                                                                                                  46. -
                                                                                                                                                  47. model/paymentMethod/tokenized_card
                                                                                                                                                  48. -
                                                                                                                                                  49. model/result/google_pay_configure_result
                                                                                                                                                  50. -
                                                                                                                                                  51. model/result/google_pay_open_result
                                                                                                                                                  52. -
                                                                                                                                                  53. model/result/payment_channels_result
                                                                                                                                                  54. -
                                                                                                                                                  55. model/result/result
                                                                                                                                                  56. -
                                                                                                                                                  57. model/result/screenless_result
                                                                                                                                                  58. -
                                                                                                                                                  59. model/screenless/ambiguous_alias
                                                                                                                                                  60. -
                                                                                                                                                  61. model/screenless/ambiguous_blik_payment
                                                                                                                                                  62. -
                                                                                                                                                  63. model/screenless/apple_pay_payment
                                                                                                                                                  64. -
                                                                                                                                                  65. model/screenless/blik_payment
                                                                                                                                                  66. -
                                                                                                                                                  67. model/screenless/callbacks
                                                                                                                                                  68. -
                                                                                                                                                  69. model/screenless/credit_card
                                                                                                                                                  70. -
                                                                                                                                                  71. model/screenless/credit_card_config
                                                                                                                                                  72. -
                                                                                                                                                  73. model/screenless/credit_card_payment
                                                                                                                                                  74. -
                                                                                                                                                  75. model/screenless/expiration_date
                                                                                                                                                  76. -
                                                                                                                                                  77. model/screenless/google_pay_environment
                                                                                                                                                  78. -
                                                                                                                                                  79. model/screenless/google_pay_payment
                                                                                                                                                  80. -
                                                                                                                                                  81. model/screenless/google_pay_utils_configuration
                                                                                                                                                  82. -
                                                                                                                                                  83. model/screenless/notifications
                                                                                                                                                  84. -
                                                                                                                                                  85. model/screenless/pay_po_payment
                                                                                                                                                  86. -
                                                                                                                                                  87. model/screenless/payment_details
                                                                                                                                                  88. -
                                                                                                                                                  89. model/screenless/raty_pekao_payment
                                                                                                                                                  90. -
                                                                                                                                                  91. model/screenless/recursive
                                                                                                                                                  92. -
                                                                                                                                                  93. model/screenless/redirects
                                                                                                                                                  94. -
                                                                                                                                                  95. model/screenless/screenless_payment
                                                                                                                                                  96. -
                                                                                                                                                  97. model/screenless/transfer_method
                                                                                                                                                  98. -
                                                                                                                                                  99. model/screenless/transfer_payment
                                                                                                                                                  100. -
                                                                                                                                                  101. model/tokenization/tokenization
                                                                                                                                                  102. -
                                                                                                                                                  103. model/tpay_configuration
                                                                                                                                                  104. -
                                                                                                                                                  105. model/tpay_environment
                                                                                                                                                  106. -
                                                                                                                                                  107. model/transaction/single_transaction
                                                                                                                                                  108. -
                                                                                                                                                  109. model/transaction/token_payment
                                                                                                                                                  110. -
                                                                                                                                                  111. model/transaction/transaction
                                                                                                                                                  112. -
                                                                                                                                                  113. model/wallet_configuration
                                                                                                                                                  114. -
                                                                                                                                                  115. tpay_button
                                                                                                                                                  116. -
                                                                                                                                                  117. tpay_method_channel
                                                                                                                                                  118. -
                                                                                                                                                  119. tpay_platform_interface
                                                                                                                                                  120. -
                                                                                                                                                  121. util/google_pay_configuration_util
                                                                                                                                                  122. -
                                                                                                                                                  123. util/google_pay_util
                                                                                                                                                  124. -
                                                                                                                                                  125. util/payment_channels_util
                                                                                                                                                  126. -
                                                                                                                                                  127. util/result_util
                                                                                                                                                  128. -
                                                                                                                                                  129. util/screenless_result_util
                                                                                                                                                  130. +
                                                                                                                                                  131. model/apple_pay_configuration
                                                                                                                                                  132. +
                                                                                                                                                  133. model/certificate_pinning_configuration
                                                                                                                                                  134. +
                                                                                                                                                  135. model/google_pay_configuration
                                                                                                                                                  136. +
                                                                                                                                                  137. model/language/language
                                                                                                                                                  138. +
                                                                                                                                                  139. model/language/languages
                                                                                                                                                  140. +
                                                                                                                                                  141. model/language/localized_string
                                                                                                                                                  142. +
                                                                                                                                                  143. model/merchant/merchant
                                                                                                                                                  144. +
                                                                                                                                                  145. model/merchant/merchant_authorization
                                                                                                                                                  146. +
                                                                                                                                                  147. model/merchant/merchant_details
                                                                                                                                                  148. +
                                                                                                                                                  149. model/payer/payer
                                                                                                                                                  150. +
                                                                                                                                                  151. model/payer/payer_address
                                                                                                                                                  152. +
                                                                                                                                                  153. model/payer/payer_context
                                                                                                                                                  154. +
                                                                                                                                                  155. model/paymentChannel/payment_channel
                                                                                                                                                  156. +
                                                                                                                                                  157. model/paymentChannel/payment_constraint
                                                                                                                                                  158. +
                                                                                                                                                  159. model/paymentChannel/payment_group
                                                                                                                                                  160. +
                                                                                                                                                  161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                  162. +
                                                                                                                                                  163. model/paymentMethod/blik_alias
                                                                                                                                                  164. +
                                                                                                                                                  165. model/paymentMethod/credit_card_brand
                                                                                                                                                  166. +
                                                                                                                                                  167. model/paymentMethod/digital_wallet
                                                                                                                                                  168. +
                                                                                                                                                  169. model/paymentMethod/installment_payment
                                                                                                                                                  170. +
                                                                                                                                                  171. model/paymentMethod/payment_method
                                                                                                                                                  172. +
                                                                                                                                                  173. model/paymentMethod/payment_methods
                                                                                                                                                  174. +
                                                                                                                                                  175. model/paymentMethod/tokenized_card
                                                                                                                                                  176. +
                                                                                                                                                  177. model/result/google_pay_configure_result
                                                                                                                                                  178. +
                                                                                                                                                  179. model/result/google_pay_open_result
                                                                                                                                                  180. +
                                                                                                                                                  181. model/result/payment_channels_result
                                                                                                                                                  182. +
                                                                                                                                                  183. model/result/result
                                                                                                                                                  184. +
                                                                                                                                                  185. model/result/screenless_result
                                                                                                                                                  186. +
                                                                                                                                                  187. model/screenless/ambiguous_alias
                                                                                                                                                  188. +
                                                                                                                                                  189. model/screenless/ambiguous_blik_payment
                                                                                                                                                  190. +
                                                                                                                                                  191. model/screenless/apple_pay_payment
                                                                                                                                                  192. +
                                                                                                                                                  193. model/screenless/blik_payment
                                                                                                                                                  194. +
                                                                                                                                                  195. model/screenless/callbacks
                                                                                                                                                  196. +
                                                                                                                                                  197. model/screenless/credit_card
                                                                                                                                                  198. +
                                                                                                                                                  199. model/screenless/credit_card_config
                                                                                                                                                  200. +
                                                                                                                                                  201. model/screenless/credit_card_payment
                                                                                                                                                  202. +
                                                                                                                                                  203. model/screenless/expiration_date
                                                                                                                                                  204. +
                                                                                                                                                  205. model/screenless/google_pay_environment
                                                                                                                                                  206. +
                                                                                                                                                  207. model/screenless/google_pay_payment
                                                                                                                                                  208. +
                                                                                                                                                  209. model/screenless/google_pay_utils_configuration
                                                                                                                                                  210. +
                                                                                                                                                  211. model/screenless/notifications
                                                                                                                                                  212. +
                                                                                                                                                  213. model/screenless/pay_po_payment
                                                                                                                                                  214. +
                                                                                                                                                  215. model/screenless/payment_details
                                                                                                                                                  216. +
                                                                                                                                                  217. model/screenless/raty_pekao_payment
                                                                                                                                                  218. +
                                                                                                                                                  219. model/screenless/recursive
                                                                                                                                                  220. +
                                                                                                                                                  221. model/screenless/redirects
                                                                                                                                                  222. +
                                                                                                                                                  223. model/screenless/screenless_payment
                                                                                                                                                  224. +
                                                                                                                                                  225. model/screenless/transfer_method
                                                                                                                                                  226. +
                                                                                                                                                  227. model/screenless/transfer_payment
                                                                                                                                                  228. +
                                                                                                                                                  229. model/tokenization/tokenization
                                                                                                                                                  230. +
                                                                                                                                                  231. model/tpay_configuration
                                                                                                                                                  232. +
                                                                                                                                                  233. model/tpay_environment
                                                                                                                                                  234. +
                                                                                                                                                  235. model/transaction/single_transaction
                                                                                                                                                  236. +
                                                                                                                                                  237. model/transaction/token_payment
                                                                                                                                                  238. +
                                                                                                                                                  239. model/transaction/transaction
                                                                                                                                                  240. +
                                                                                                                                                  241. model/wallet_configuration
                                                                                                                                                  242. +
                                                                                                                                                  243. tpay_button
                                                                                                                                                  244. +
                                                                                                                                                  245. tpay_method_channel
                                                                                                                                                  246. +
                                                                                                                                                  247. tpay_platform_interface
                                                                                                                                                  248. +
                                                                                                                                                  249. util/google_pay_configuration_util
                                                                                                                                                  250. +
                                                                                                                                                  251. util/google_pay_util
                                                                                                                                                  252. +
                                                                                                                                                  253. util/payment_channels_util
                                                                                                                                                  254. +
                                                                                                                                                  255. util/result_util
                                                                                                                                                  256. +
                                                                                                                                                  257. util/screenless_result_util
                                                                                                                                                  @@ -176,7 +173,7 @@
                                                                                                                                                  payment_details library
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                  diff --git a/doc/model_screenless_payment_details/model_screenless_payment_details-library-sidebar.html b/doc/model_screenless_payment_details/model_screenless_payment_details-library-sidebar.html index c18fe8b4..0dc08e30 100644 --- a/doc/model_screenless_payment_details/model_screenless_payment_details-library-sidebar.html +++ b/doc/model_screenless_payment_details/model_screenless_payment_details-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                    -
                                                                                                                                                  1. Classes
                                                                                                                                                  2. +
                                                                                                                                                  3. Classes
                                                                                                                                                  4. PaymentDetails
                                                                                                                                                  5. diff --git a/doc/model_screenless_payment_details/model_screenless_payment_details-library.html b/doc/model_screenless_payment_details/model_screenless_payment_details-library.html index 00dfaad7..c52eb70a 100644 --- a/doc/model_screenless_payment_details/model_screenless_payment_details-library.html +++ b/doc/model_screenless_payment_details/model_screenless_payment_details-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                    New URL

                                                                                                                                                    +

                                                                                                                                                    New URL

                                                                                                                                                    \ No newline at end of file diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class-sidebar.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class-sidebar.html index b9a4a8ea..eafcc58d 100644 --- a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class-sidebar.html +++ b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                    1. Constructors
                                                                                                                                                    2. -
                                                                                                                                                    3. RatyPekaoPayment
                                                                                                                                                    4. +
                                                                                                                                                    5. new
                                                                                                                                                    6. fromJson
                                                                                                                                                    7. diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class.html index b9db18b4..39858181 100644 --- a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class.html +++ b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                      RatyPekaoPayment
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      RatyPekaoPayment class
                                                                                                                                                      Annotations
                                                                                                                                                      @@ -97,8 +94,8 @@

                                                                                                                                                      RatyPekaoPayment class

                                                                                                                                                      Constructors

                                                                                                                                                      -
                                                                                                                                                      - RatyPekaoPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, required int channelId}) +
                                                                                                                                                      + RatyPekaoPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks callbacks, required int channelId})
                                                                                                                                                      @@ -120,7 +117,7 @@

                                                                                                                                                      Properties

                                                                                                                                                      callbacks - Callbacks? + Callbacks
                                                                                                                                                      @@ -275,7 +272,7 @@

                                                                                                                                                      Operators

                                                                                                                                                      @@ -288,7 +285,7 @@
                                                                                                                                                      raty_pekao_payment library
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                      diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.fromJson.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.fromJson.html index f2f26f05..219ee811 100644 --- a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.fromJson.html +++ b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      Implementation

                                                                                                                                                      @@ -94,7 +91,7 @@
                                                                                                                                                      RatyPekaoPayment class
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                      diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.html index c8e22b9a..5305e7f5 100644 --- a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.html +++ b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.html @@ -4,8 +4,8 @@ - - RatyPekaoPayment constructor - RatyPekaoPayment - raty_pekao_payment library - Dart API + + RatyPekaoPayment.new constructor - RatyPekaoPayment - raty_pekao_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                      RatyPekaoPayment
                                                                                                                                                      +
                                                                                                                                                      RatyPekaoPayment.new
                                                                                                                                                      -
                                                                                                                                                      - -
                                                                                                                                                      +
                                                                                                                                                      RatyPekaoPayment constructor RatyPekaoPayment({
                                                                                                                                                      1. required PaymentDetails paymentDetails,
                                                                                                                                                      2. required Payer payer,
                                                                                                                                                      3. -
                                                                                                                                                      4. required Callbacks? callbacks,
                                                                                                                                                      5. +
                                                                                                                                                      6. required Callbacks callbacks,
                                                                                                                                                      7. required int channelId,
                                                                                                                                                      })
                                                                                                                                            @@ -88,9 +85,9 @@

                                                                                                                                            Implementation

                                                                                                                                            RatyPekaoPayment class
                                                                                                                                            @@ -102,7 +99,7 @@
                                                                                                                                            RatyPekaoPayment class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/channelId.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/channelId.html index 8dfb3962..eae2bd19 100644 --- a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/channelId.html +++ b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/channelId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            RatyPekaoPayment class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/toJson.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/toJson.html index a208527c..41b06679 100644 --- a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/toJson.html +++ b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            RatyPekaoPayment class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_raty_pekao_payment/index.html b/doc/model_screenless_raty_pekao_payment/index.html index e1d4b951..c2eff8dd 100644 --- a/doc/model_screenless_raty_pekao_payment/index.html +++ b/doc/model_screenless_raty_pekao_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Classes
                                                                                                                                            flutter_tpay package
                                                                                                                                            1. Libraries
                                                                                                                                            2. -
                                                                                                                                            3. model/apple_pay_configuration
                                                                                                                                            4. -
                                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                                            6. -
                                                                                                                                            7. model/google_pay_configuration
                                                                                                                                            8. -
                                                                                                                                            9. model/language/language
                                                                                                                                            10. -
                                                                                                                                            11. model/language/languages
                                                                                                                                            12. -
                                                                                                                                            13. model/language/localized_string
                                                                                                                                            14. -
                                                                                                                                            15. model/merchant/merchant
                                                                                                                                            16. -
                                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                                            18. -
                                                                                                                                            19. model/merchant/merchant_details
                                                                                                                                            20. -
                                                                                                                                            21. model/payer/payer
                                                                                                                                            22. -
                                                                                                                                            23. model/payer/payer_address
                                                                                                                                            24. -
                                                                                                                                            25. model/payer/payer_context
                                                                                                                                            26. -
                                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                                            28. -
                                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                                            30. -
                                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                                            32. -
                                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                                            34. -
                                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                                            36. -
                                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                                            38. -
                                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                                            40. -
                                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                                            42. -
                                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                                            44. -
                                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                                            46. -
                                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                                            48. -
                                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                                            50. -
                                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                                            52. -
                                                                                                                                            53. model/result/payment_channels_result
                                                                                                                                            54. -
                                                                                                                                            55. model/result/result
                                                                                                                                            56. -
                                                                                                                                            57. model/result/screenless_result
                                                                                                                                            58. -
                                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                                            60. -
                                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                                            62. -
                                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                                            64. -
                                                                                                                                            65. model/screenless/blik_payment
                                                                                                                                            66. -
                                                                                                                                            67. model/screenless/callbacks
                                                                                                                                            68. -
                                                                                                                                            69. model/screenless/credit_card
                                                                                                                                            70. -
                                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                                            72. -
                                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                                            74. -
                                                                                                                                            75. model/screenless/expiration_date
                                                                                                                                            76. -
                                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                                            78. -
                                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                                            80. -
                                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                                            82. -
                                                                                                                                            83. model/screenless/notifications
                                                                                                                                            84. -
                                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                                            86. -
                                                                                                                                            87. model/screenless/payment_details
                                                                                                                                            88. -
                                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                                            90. -
                                                                                                                                            91. model/screenless/recursive
                                                                                                                                            92. -
                                                                                                                                            93. model/screenless/redirects
                                                                                                                                            94. -
                                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                                            96. -
                                                                                                                                            97. model/screenless/transfer_method
                                                                                                                                            98. -
                                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                                            100. -
                                                                                                                                            101. model/tokenization/tokenization
                                                                                                                                            102. -
                                                                                                                                            103. model/tpay_configuration
                                                                                                                                            104. -
                                                                                                                                            105. model/tpay_environment
                                                                                                                                            106. -
                                                                                                                                            107. model/transaction/single_transaction
                                                                                                                                            108. -
                                                                                                                                            109. model/transaction/token_payment
                                                                                                                                            110. -
                                                                                                                                            111. model/transaction/transaction
                                                                                                                                            112. -
                                                                                                                                            113. model/wallet_configuration
                                                                                                                                            114. -
                                                                                                                                            115. tpay_button
                                                                                                                                            116. -
                                                                                                                                            117. tpay_method_channel
                                                                                                                                            118. -
                                                                                                                                            119. tpay_platform_interface
                                                                                                                                            120. -
                                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                                            122. -
                                                                                                                                            123. util/google_pay_util
                                                                                                                                            124. -
                                                                                                                                            125. util/payment_channels_util
                                                                                                                                            126. -
                                                                                                                                            127. util/result_util
                                                                                                                                            128. -
                                                                                                                                            129. util/screenless_result_util
                                                                                                                                            130. +
                                                                                                                                            131. model/apple_pay_configuration
                                                                                                                                            132. +
                                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                                            134. +
                                                                                                                                            135. model/google_pay_configuration
                                                                                                                                            136. +
                                                                                                                                            137. model/language/language
                                                                                                                                            138. +
                                                                                                                                            139. model/language/languages
                                                                                                                                            140. +
                                                                                                                                            141. model/language/localized_string
                                                                                                                                            142. +
                                                                                                                                            143. model/merchant/merchant
                                                                                                                                            144. +
                                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                                            146. +
                                                                                                                                            147. model/merchant/merchant_details
                                                                                                                                            148. +
                                                                                                                                            149. model/payer/payer
                                                                                                                                            150. +
                                                                                                                                            151. model/payer/payer_address
                                                                                                                                            152. +
                                                                                                                                            153. model/payer/payer_context
                                                                                                                                            154. +
                                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                                            156. +
                                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                                            158. +
                                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                                            160. +
                                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                                            162. +
                                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                                            164. +
                                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                                            166. +
                                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                                            168. +
                                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                                            170. +
                                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                                            172. +
                                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                                            174. +
                                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                                            176. +
                                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                                            178. +
                                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                                            180. +
                                                                                                                                            181. model/result/payment_channels_result
                                                                                                                                            182. +
                                                                                                                                            183. model/result/result
                                                                                                                                            184. +
                                                                                                                                            185. model/result/screenless_result
                                                                                                                                            186. +
                                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                                            188. +
                                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                                            190. +
                                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                                            192. +
                                                                                                                                            193. model/screenless/blik_payment
                                                                                                                                            194. +
                                                                                                                                            195. model/screenless/callbacks
                                                                                                                                            196. +
                                                                                                                                            197. model/screenless/credit_card
                                                                                                                                            198. +
                                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                                            200. +
                                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                                            202. +
                                                                                                                                            203. model/screenless/expiration_date
                                                                                                                                            204. +
                                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                                            206. +
                                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                                            208. +
                                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                                            210. +
                                                                                                                                            211. model/screenless/notifications
                                                                                                                                            212. +
                                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                                            214. +
                                                                                                                                            215. model/screenless/payment_details
                                                                                                                                            216. +
                                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                                            218. +
                                                                                                                                            219. model/screenless/recursive
                                                                                                                                            220. +
                                                                                                                                            221. model/screenless/redirects
                                                                                                                                            222. +
                                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                                            224. +
                                                                                                                                            225. model/screenless/transfer_method
                                                                                                                                            226. +
                                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                                            228. +
                                                                                                                                            229. model/tokenization/tokenization
                                                                                                                                            230. +
                                                                                                                                            231. model/tpay_configuration
                                                                                                                                            232. +
                                                                                                                                            233. model/tpay_environment
                                                                                                                                            234. +
                                                                                                                                            235. model/transaction/single_transaction
                                                                                                                                            236. +
                                                                                                                                            237. model/transaction/token_payment
                                                                                                                                            238. +
                                                                                                                                            239. model/transaction/transaction
                                                                                                                                            240. +
                                                                                                                                            241. model/wallet_configuration
                                                                                                                                            242. +
                                                                                                                                            243. tpay_button
                                                                                                                                            244. +
                                                                                                                                            245. tpay_method_channel
                                                                                                                                            246. +
                                                                                                                                            247. tpay_platform_interface
                                                                                                                                            248. +
                                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                                            250. +
                                                                                                                                            251. util/google_pay_util
                                                                                                                                            252. +
                                                                                                                                            253. util/payment_channels_util
                                                                                                                                            254. +
                                                                                                                                            255. util/result_util
                                                                                                                                            256. +
                                                                                                                                            257. util/screenless_result_util
                                                                                                                                            @@ -176,7 +173,7 @@
                                                                                                                                            raty_pekao_payment library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library-sidebar.html b/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library-sidebar.html index 38dfb07b..a102f5b2 100644 --- a/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library-sidebar.html +++ b/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                              -
                                                                                                                                            1. Classes
                                                                                                                                            2. +
                                                                                                                                            3. Classes
                                                                                                                                            4. RatyPekaoPayment
                                                                                                                                            5. diff --git a/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library.html b/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library.html index 2f1afdb0..080db2d8 100644 --- a/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library.html +++ b/doc/model_screenless_raty_pekao_payment/model_screenless_raty_pekao_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                              New URL

                                                                                                                                              +

                                                                                                                                              New URL

                                                                                                                                              \ No newline at end of file diff --git a/doc/model_screenless_recursive/Frequency.html b/doc/model_screenless_recursive/Frequency.html index 30a177a0..5b5dd4a3 100644 --- a/doc/model_screenless_recursive/Frequency.html +++ b/doc/model_screenless_recursive/Frequency.html @@ -25,24 +25,21 @@ menu
                                                                                                                                              Frequency
                                                                                                                                              -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              Constants @@ -317,7 +314,7 @@
                                                                                                                                              recursive library
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_screenless_recursive/Frequency/values-constant.html b/doc/model_screenless_recursive/Frequency/values-constant.html index 9619e1bd..7fb35538 100644 --- a/doc/model_screenless_recursive/Frequency/values-constant.html +++ b/doc/model_screenless_recursive/Frequency/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                              - -
                                                                                                                                              +
                                                                                                                                              values constant @@ -96,7 +93,7 @@
                                                                                                                                              Frequency enum
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                              diff --git a/doc/model_screenless_recursive/Recursive-class-sidebar.html b/doc/model_screenless_recursive/Recursive-class-sidebar.html index 8ac81a2c..1d2ada8f 100644 --- a/doc/model_screenless_recursive/Recursive-class-sidebar.html +++ b/doc/model_screenless_recursive/Recursive-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                              1. Constructors
                                                                                                                                              2. -
                                                                                                                                              3. Recursive
                                                                                                                                              4. +
                                                                                                                                              5. new
                                                                                                                                              6. fromJson
                                                                                                                                              7. diff --git a/doc/model_screenless_recursive/Recursive-class.html b/doc/model_screenless_recursive/Recursive-class.html index 0c8f2fca..d15f2dd4 100644 --- a/doc/model_screenless_recursive/Recursive-class.html +++ b/doc/model_screenless_recursive/Recursive-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                Recursive
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Recursive class
                                                                                                                                                Annotations
                                                                                                                                                @@ -91,7 +88,7 @@

                                                                                                                                                Recursive class

                                                                                                                                                Constructors

                                                                                                                                                -
                                                                                                                                                +
                                                                                                                                                Recursive({required Frequency frequency, required int? quantity, required String endDate})
                                                                                                                                                @@ -257,7 +254,7 @@

                                                                                                                                                Operators

                                                                                                                                                @@ -270,7 +267,7 @@
                                                                                                                                                recursive library
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/Recursive/Recursive.fromJson.html b/doc/model_screenless_recursive/Recursive/Recursive.fromJson.html index 7b1ebfb3..4e7e6197 100644 --- a/doc/model_screenless_recursive/Recursive/Recursive.fromJson.html +++ b/doc/model_screenless_recursive/Recursive/Recursive.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation

                                                                                                                                                @@ -94,7 +91,7 @@
                                                                                                                                                Recursive class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/Recursive/Recursive.html b/doc/model_screenless_recursive/Recursive/Recursive.html index 168695f2..b16bee40 100644 --- a/doc/model_screenless_recursive/Recursive/Recursive.html +++ b/doc/model_screenless_recursive/Recursive/Recursive.html @@ -4,8 +4,8 @@ - - Recursive constructor - Recursive - recursive library - Dart API + + Recursive.new constructor - Recursive - recursive library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                Recursive
                                                                                                                                                +
                                                                                                                                                Recursive.new
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation
                                                                                                                                                Recursive class
                                                                                                                                                @@ -100,7 +97,7 @@
                                                                                                                                                Recursive class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/Recursive/endDate.html b/doc/model_screenless_recursive/Recursive/endDate.html index 024ea14d..426195fc 100644 --- a/doc/model_screenless_recursive/Recursive/endDate.html +++ b/doc/model_screenless_recursive/Recursive/endDate.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                Recursive class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/Recursive/frequency.html b/doc/model_screenless_recursive/Recursive/frequency.html index b02cc678..a9a1306b 100644 --- a/doc/model_screenless_recursive/Recursive/frequency.html +++ b/doc/model_screenless_recursive/Recursive/frequency.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                Recursive class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/Recursive/quantity.html b/doc/model_screenless_recursive/Recursive/quantity.html index 96488d5e..92907500 100644 --- a/doc/model_screenless_recursive/Recursive/quantity.html +++ b/doc/model_screenless_recursive/Recursive/quantity.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                Recursive class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/Recursive/toJson.html b/doc/model_screenless_recursive/Recursive/toJson.html index dc68acc6..0c2d12b5 100644 --- a/doc/model_screenless_recursive/Recursive/toJson.html +++ b/doc/model_screenless_recursive/Recursive/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                Recursive class
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/index.html b/doc/model_screenless_recursive/index.html index 5af04582..11582f50 100644 --- a/doc/model_screenless_recursive/index.html +++ b/doc/model_screenless_recursive/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                Enums
                                                                                                                                                flutter_tpay package
                                                                                                                                                1. Libraries
                                                                                                                                                2. -
                                                                                                                                                3. model/apple_pay_configuration
                                                                                                                                                4. -
                                                                                                                                                5. model/certificate_pinning_configuration
                                                                                                                                                6. -
                                                                                                                                                7. model/google_pay_configuration
                                                                                                                                                8. -
                                                                                                                                                9. model/language/language
                                                                                                                                                10. -
                                                                                                                                                11. model/language/languages
                                                                                                                                                12. -
                                                                                                                                                13. model/language/localized_string
                                                                                                                                                14. -
                                                                                                                                                15. model/merchant/merchant
                                                                                                                                                16. -
                                                                                                                                                17. model/merchant/merchant_authorization
                                                                                                                                                18. -
                                                                                                                                                19. model/merchant/merchant_details
                                                                                                                                                20. -
                                                                                                                                                21. model/payer/payer
                                                                                                                                                22. -
                                                                                                                                                23. model/payer/payer_address
                                                                                                                                                24. -
                                                                                                                                                25. model/payer/payer_context
                                                                                                                                                26. -
                                                                                                                                                27. model/paymentChannel/payment_channel
                                                                                                                                                28. -
                                                                                                                                                29. model/paymentChannel/payment_constraint
                                                                                                                                                30. -
                                                                                                                                                31. model/paymentChannel/payment_group
                                                                                                                                                32. -
                                                                                                                                                33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                34. -
                                                                                                                                                35. model/paymentMethod/blik_alias
                                                                                                                                                36. -
                                                                                                                                                37. model/paymentMethod/credit_card_brand
                                                                                                                                                38. -
                                                                                                                                                39. model/paymentMethod/digital_wallet
                                                                                                                                                40. -
                                                                                                                                                41. model/paymentMethod/installment_payment
                                                                                                                                                42. -
                                                                                                                                                43. model/paymentMethod/payment_method
                                                                                                                                                44. -
                                                                                                                                                45. model/paymentMethod/payment_methods
                                                                                                                                                46. -
                                                                                                                                                47. model/paymentMethod/tokenized_card
                                                                                                                                                48. -
                                                                                                                                                49. model/result/google_pay_configure_result
                                                                                                                                                50. -
                                                                                                                                                51. model/result/google_pay_open_result
                                                                                                                                                52. -
                                                                                                                                                53. model/result/payment_channels_result
                                                                                                                                                54. -
                                                                                                                                                55. model/result/result
                                                                                                                                                56. -
                                                                                                                                                57. model/result/screenless_result
                                                                                                                                                58. -
                                                                                                                                                59. model/screenless/ambiguous_alias
                                                                                                                                                60. -
                                                                                                                                                61. model/screenless/ambiguous_blik_payment
                                                                                                                                                62. -
                                                                                                                                                63. model/screenless/apple_pay_payment
                                                                                                                                                64. -
                                                                                                                                                65. model/screenless/blik_payment
                                                                                                                                                66. -
                                                                                                                                                67. model/screenless/callbacks
                                                                                                                                                68. -
                                                                                                                                                69. model/screenless/credit_card
                                                                                                                                                70. -
                                                                                                                                                71. model/screenless/credit_card_config
                                                                                                                                                72. -
                                                                                                                                                73. model/screenless/credit_card_payment
                                                                                                                                                74. -
                                                                                                                                                75. model/screenless/expiration_date
                                                                                                                                                76. -
                                                                                                                                                77. model/screenless/google_pay_environment
                                                                                                                                                78. -
                                                                                                                                                79. model/screenless/google_pay_payment
                                                                                                                                                80. -
                                                                                                                                                81. model/screenless/google_pay_utils_configuration
                                                                                                                                                82. -
                                                                                                                                                83. model/screenless/notifications
                                                                                                                                                84. -
                                                                                                                                                85. model/screenless/pay_po_payment
                                                                                                                                                86. -
                                                                                                                                                87. model/screenless/payment_details
                                                                                                                                                88. -
                                                                                                                                                89. model/screenless/raty_pekao_payment
                                                                                                                                                90. -
                                                                                                                                                91. model/screenless/recursive
                                                                                                                                                92. -
                                                                                                                                                93. model/screenless/redirects
                                                                                                                                                94. -
                                                                                                                                                95. model/screenless/screenless_payment
                                                                                                                                                96. -
                                                                                                                                                97. model/screenless/transfer_method
                                                                                                                                                98. -
                                                                                                                                                99. model/screenless/transfer_payment
                                                                                                                                                100. -
                                                                                                                                                101. model/tokenization/tokenization
                                                                                                                                                102. -
                                                                                                                                                103. model/tpay_configuration
                                                                                                                                                104. -
                                                                                                                                                105. model/tpay_environment
                                                                                                                                                106. -
                                                                                                                                                107. model/transaction/single_transaction
                                                                                                                                                108. -
                                                                                                                                                109. model/transaction/token_payment
                                                                                                                                                110. -
                                                                                                                                                111. model/transaction/transaction
                                                                                                                                                112. -
                                                                                                                                                113. model/wallet_configuration
                                                                                                                                                114. -
                                                                                                                                                115. tpay_button
                                                                                                                                                116. -
                                                                                                                                                117. tpay_method_channel
                                                                                                                                                118. -
                                                                                                                                                119. tpay_platform_interface
                                                                                                                                                120. -
                                                                                                                                                121. util/google_pay_configuration_util
                                                                                                                                                122. -
                                                                                                                                                123. util/google_pay_util
                                                                                                                                                124. -
                                                                                                                                                125. util/payment_channels_util
                                                                                                                                                126. -
                                                                                                                                                127. util/result_util
                                                                                                                                                128. -
                                                                                                                                                129. util/screenless_result_util
                                                                                                                                                130. +
                                                                                                                                                131. model/apple_pay_configuration
                                                                                                                                                132. +
                                                                                                                                                133. model/certificate_pinning_configuration
                                                                                                                                                134. +
                                                                                                                                                135. model/google_pay_configuration
                                                                                                                                                136. +
                                                                                                                                                137. model/language/language
                                                                                                                                                138. +
                                                                                                                                                139. model/language/languages
                                                                                                                                                140. +
                                                                                                                                                141. model/language/localized_string
                                                                                                                                                142. +
                                                                                                                                                143. model/merchant/merchant
                                                                                                                                                144. +
                                                                                                                                                145. model/merchant/merchant_authorization
                                                                                                                                                146. +
                                                                                                                                                147. model/merchant/merchant_details
                                                                                                                                                148. +
                                                                                                                                                149. model/payer/payer
                                                                                                                                                150. +
                                                                                                                                                151. model/payer/payer_address
                                                                                                                                                152. +
                                                                                                                                                153. model/payer/payer_context
                                                                                                                                                154. +
                                                                                                                                                155. model/paymentChannel/payment_channel
                                                                                                                                                156. +
                                                                                                                                                157. model/paymentChannel/payment_constraint
                                                                                                                                                158. +
                                                                                                                                                159. model/paymentChannel/payment_group
                                                                                                                                                160. +
                                                                                                                                                161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                162. +
                                                                                                                                                163. model/paymentMethod/blik_alias
                                                                                                                                                164. +
                                                                                                                                                165. model/paymentMethod/credit_card_brand
                                                                                                                                                166. +
                                                                                                                                                167. model/paymentMethod/digital_wallet
                                                                                                                                                168. +
                                                                                                                                                169. model/paymentMethod/installment_payment
                                                                                                                                                170. +
                                                                                                                                                171. model/paymentMethod/payment_method
                                                                                                                                                172. +
                                                                                                                                                173. model/paymentMethod/payment_methods
                                                                                                                                                174. +
                                                                                                                                                175. model/paymentMethod/tokenized_card
                                                                                                                                                176. +
                                                                                                                                                177. model/result/google_pay_configure_result
                                                                                                                                                178. +
                                                                                                                                                179. model/result/google_pay_open_result
                                                                                                                                                180. +
                                                                                                                                                181. model/result/payment_channels_result
                                                                                                                                                182. +
                                                                                                                                                183. model/result/result
                                                                                                                                                184. +
                                                                                                                                                185. model/result/screenless_result
                                                                                                                                                186. +
                                                                                                                                                187. model/screenless/ambiguous_alias
                                                                                                                                                188. +
                                                                                                                                                189. model/screenless/ambiguous_blik_payment
                                                                                                                                                190. +
                                                                                                                                                191. model/screenless/apple_pay_payment
                                                                                                                                                192. +
                                                                                                                                                193. model/screenless/blik_payment
                                                                                                                                                194. +
                                                                                                                                                195. model/screenless/callbacks
                                                                                                                                                196. +
                                                                                                                                                197. model/screenless/credit_card
                                                                                                                                                198. +
                                                                                                                                                199. model/screenless/credit_card_config
                                                                                                                                                200. +
                                                                                                                                                201. model/screenless/credit_card_payment
                                                                                                                                                202. +
                                                                                                                                                203. model/screenless/expiration_date
                                                                                                                                                204. +
                                                                                                                                                205. model/screenless/google_pay_environment
                                                                                                                                                206. +
                                                                                                                                                207. model/screenless/google_pay_payment
                                                                                                                                                208. +
                                                                                                                                                209. model/screenless/google_pay_utils_configuration
                                                                                                                                                210. +
                                                                                                                                                211. model/screenless/notifications
                                                                                                                                                212. +
                                                                                                                                                213. model/screenless/pay_po_payment
                                                                                                                                                214. +
                                                                                                                                                215. model/screenless/payment_details
                                                                                                                                                216. +
                                                                                                                                                217. model/screenless/raty_pekao_payment
                                                                                                                                                218. +
                                                                                                                                                219. model/screenless/recursive
                                                                                                                                                220. +
                                                                                                                                                221. model/screenless/redirects
                                                                                                                                                222. +
                                                                                                                                                223. model/screenless/screenless_payment
                                                                                                                                                224. +
                                                                                                                                                225. model/screenless/transfer_method
                                                                                                                                                226. +
                                                                                                                                                227. model/screenless/transfer_payment
                                                                                                                                                228. +
                                                                                                                                                229. model/tokenization/tokenization
                                                                                                                                                230. +
                                                                                                                                                231. model/tpay_configuration
                                                                                                                                                232. +
                                                                                                                                                233. model/tpay_environment
                                                                                                                                                234. +
                                                                                                                                                235. model/transaction/single_transaction
                                                                                                                                                236. +
                                                                                                                                                237. model/transaction/token_payment
                                                                                                                                                238. +
                                                                                                                                                239. model/transaction/transaction
                                                                                                                                                240. +
                                                                                                                                                241. model/wallet_configuration
                                                                                                                                                242. +
                                                                                                                                                243. tpay_button
                                                                                                                                                244. +
                                                                                                                                                245. tpay_method_channel
                                                                                                                                                246. +
                                                                                                                                                247. tpay_platform_interface
                                                                                                                                                248. +
                                                                                                                                                249. util/google_pay_configuration_util
                                                                                                                                                250. +
                                                                                                                                                251. util/google_pay_util
                                                                                                                                                252. +
                                                                                                                                                253. util/payment_channels_util
                                                                                                                                                254. +
                                                                                                                                                255. util/result_util
                                                                                                                                                256. +
                                                                                                                                                257. util/screenless_result_util
                                                                                                                                                @@ -189,7 +186,7 @@
                                                                                                                                                recursive library
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                diff --git a/doc/model_screenless_recursive/model_screenless_recursive-library-sidebar.html b/doc/model_screenless_recursive/model_screenless_recursive-library-sidebar.html index 795197ec..e6e7009b 100644 --- a/doc/model_screenless_recursive/model_screenless_recursive-library-sidebar.html +++ b/doc/model_screenless_recursive/model_screenless_recursive-library-sidebar.html @@ -1,8 +1,8 @@
                                                                                                                                                  -
                                                                                                                                                1. Classes
                                                                                                                                                2. +
                                                                                                                                                3. Classes
                                                                                                                                                4. Recursive
                                                                                                                                                5. -
                                                                                                                                                6. Enums
                                                                                                                                                7. +
                                                                                                                                                8. Enums
                                                                                                                                                9. Frequency
                                                                                                                                                10. diff --git a/doc/model_screenless_recursive/model_screenless_recursive-library.html b/doc/model_screenless_recursive/model_screenless_recursive-library.html index 9639c2c9..47b63aa6 100644 --- a/doc/model_screenless_recursive/model_screenless_recursive-library.html +++ b/doc/model_screenless_recursive/model_screenless_recursive-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                  New URL

                                                                                                                                                  +

                                                                                                                                                  New URL

                                                                                                                                                  \ No newline at end of file diff --git a/doc/model_screenless_redirects/Redirects-class-sidebar.html b/doc/model_screenless_redirects/Redirects-class-sidebar.html index 3a9efeb1..a0f2eb4b 100644 --- a/doc/model_screenless_redirects/Redirects-class-sidebar.html +++ b/doc/model_screenless_redirects/Redirects-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                  1. Constructors
                                                                                                                                                  2. -
                                                                                                                                                  3. Redirects
                                                                                                                                                  4. +
                                                                                                                                                  5. new
                                                                                                                                                  6. fromJson
                                                                                                                                                  7. diff --git a/doc/model_screenless_redirects/Redirects-class.html b/doc/model_screenless_redirects/Redirects-class.html index 8d065082..f7ba8832 100644 --- a/doc/model_screenless_redirects/Redirects-class.html +++ b/doc/model_screenless_redirects/Redirects-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                    Redirects
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Redirects class
                                                                                                                                                    Annotations
                                                                                                                                                    @@ -90,7 +87,7 @@

                                                                                                                                                    Redirects class

                                                                                                                                                    Constructors

                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    Redirects({required String successUrl, required String errorUrl})
                                                                                                                                                    @@ -244,7 +241,7 @@

                                                                                                                                                    Operators

                                                                                                                                                    @@ -257,7 +254,7 @@
                                                                                                                                                    redirects library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/Redirects/Redirects.fromJson.html b/doc/model_screenless_redirects/Redirects/Redirects.fromJson.html index 88de099a..b073ce8b 100644 --- a/doc/model_screenless_redirects/Redirects/Redirects.fromJson.html +++ b/doc/model_screenless_redirects/Redirects/Redirects.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation

                                                                                                                                                    @@ -94,7 +91,7 @@
                                                                                                                                                    Redirects class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/Redirects/Redirects.html b/doc/model_screenless_redirects/Redirects/Redirects.html index 47380c66..9d403823 100644 --- a/doc/model_screenless_redirects/Redirects/Redirects.html +++ b/doc/model_screenless_redirects/Redirects/Redirects.html @@ -4,8 +4,8 @@ - - Redirects constructor - Redirects - redirects library - Dart API + + Redirects.new constructor - Redirects - redirects library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                    Redirects
                                                                                                                                                    +
                                                                                                                                                    Redirects.new
                                                                                                                                                    -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation
                                                                                                                                                    Redirects class
                                                                                                                                                    @@ -98,7 +95,7 @@
                                                                                                                                                    Redirects class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/Redirects/errorUrl.html b/doc/model_screenless_redirects/Redirects/errorUrl.html index 64c1f325..5d209d9c 100644 --- a/doc/model_screenless_redirects/Redirects/errorUrl.html +++ b/doc/model_screenless_redirects/Redirects/errorUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    Redirects class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/Redirects/successUrl.html b/doc/model_screenless_redirects/Redirects/successUrl.html index 6bc5d7f0..38d0e10b 100644 --- a/doc/model_screenless_redirects/Redirects/successUrl.html +++ b/doc/model_screenless_redirects/Redirects/successUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    Redirects class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/Redirects/toJson.html b/doc/model_screenless_redirects/Redirects/toJson.html index 53a2468b..90e8b4f7 100644 --- a/doc/model_screenless_redirects/Redirects/toJson.html +++ b/doc/model_screenless_redirects/Redirects/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Implementation @@ -97,7 +94,7 @@
                                                                                                                                                    Redirects class
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/index.html b/doc/model_screenless_redirects/index.html index 378e2fec..18c01fdf 100644 --- a/doc/model_screenless_redirects/index.html +++ b/doc/model_screenless_redirects/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                                    - -
                                                                                                                                                    +
                                                                                                                                                    Classes
                                                                                                                                                    flutter_tpay package
                                                                                                                                                    1. Libraries
                                                                                                                                                    2. -
                                                                                                                                                    3. model/apple_pay_configuration
                                                                                                                                                    4. -
                                                                                                                                                    5. model/certificate_pinning_configuration
                                                                                                                                                    6. -
                                                                                                                                                    7. model/google_pay_configuration
                                                                                                                                                    8. -
                                                                                                                                                    9. model/language/language
                                                                                                                                                    10. -
                                                                                                                                                    11. model/language/languages
                                                                                                                                                    12. -
                                                                                                                                                    13. model/language/localized_string
                                                                                                                                                    14. -
                                                                                                                                                    15. model/merchant/merchant
                                                                                                                                                    16. -
                                                                                                                                                    17. model/merchant/merchant_authorization
                                                                                                                                                    18. -
                                                                                                                                                    19. model/merchant/merchant_details
                                                                                                                                                    20. -
                                                                                                                                                    21. model/payer/payer
                                                                                                                                                    22. -
                                                                                                                                                    23. model/payer/payer_address
                                                                                                                                                    24. -
                                                                                                                                                    25. model/payer/payer_context
                                                                                                                                                    26. -
                                                                                                                                                    27. model/paymentChannel/payment_channel
                                                                                                                                                    28. -
                                                                                                                                                    29. model/paymentChannel/payment_constraint
                                                                                                                                                    30. -
                                                                                                                                                    31. model/paymentChannel/payment_group
                                                                                                                                                    32. -
                                                                                                                                                    33. model/paymentMethod/automatic_payment_methods
                                                                                                                                                    34. -
                                                                                                                                                    35. model/paymentMethod/blik_alias
                                                                                                                                                    36. -
                                                                                                                                                    37. model/paymentMethod/credit_card_brand
                                                                                                                                                    38. -
                                                                                                                                                    39. model/paymentMethod/digital_wallet
                                                                                                                                                    40. -
                                                                                                                                                    41. model/paymentMethod/installment_payment
                                                                                                                                                    42. -
                                                                                                                                                    43. model/paymentMethod/payment_method
                                                                                                                                                    44. -
                                                                                                                                                    45. model/paymentMethod/payment_methods
                                                                                                                                                    46. -
                                                                                                                                                    47. model/paymentMethod/tokenized_card
                                                                                                                                                    48. -
                                                                                                                                                    49. model/result/google_pay_configure_result
                                                                                                                                                    50. -
                                                                                                                                                    51. model/result/google_pay_open_result
                                                                                                                                                    52. -
                                                                                                                                                    53. model/result/payment_channels_result
                                                                                                                                                    54. -
                                                                                                                                                    55. model/result/result
                                                                                                                                                    56. -
                                                                                                                                                    57. model/result/screenless_result
                                                                                                                                                    58. -
                                                                                                                                                    59. model/screenless/ambiguous_alias
                                                                                                                                                    60. -
                                                                                                                                                    61. model/screenless/ambiguous_blik_payment
                                                                                                                                                    62. -
                                                                                                                                                    63. model/screenless/apple_pay_payment
                                                                                                                                                    64. -
                                                                                                                                                    65. model/screenless/blik_payment
                                                                                                                                                    66. -
                                                                                                                                                    67. model/screenless/callbacks
                                                                                                                                                    68. -
                                                                                                                                                    69. model/screenless/credit_card
                                                                                                                                                    70. -
                                                                                                                                                    71. model/screenless/credit_card_config
                                                                                                                                                    72. -
                                                                                                                                                    73. model/screenless/credit_card_payment
                                                                                                                                                    74. -
                                                                                                                                                    75. model/screenless/expiration_date
                                                                                                                                                    76. -
                                                                                                                                                    77. model/screenless/google_pay_environment
                                                                                                                                                    78. -
                                                                                                                                                    79. model/screenless/google_pay_payment
                                                                                                                                                    80. -
                                                                                                                                                    81. model/screenless/google_pay_utils_configuration
                                                                                                                                                    82. -
                                                                                                                                                    83. model/screenless/notifications
                                                                                                                                                    84. -
                                                                                                                                                    85. model/screenless/pay_po_payment
                                                                                                                                                    86. -
                                                                                                                                                    87. model/screenless/payment_details
                                                                                                                                                    88. -
                                                                                                                                                    89. model/screenless/raty_pekao_payment
                                                                                                                                                    90. -
                                                                                                                                                    91. model/screenless/recursive
                                                                                                                                                    92. -
                                                                                                                                                    93. model/screenless/redirects
                                                                                                                                                    94. -
                                                                                                                                                    95. model/screenless/screenless_payment
                                                                                                                                                    96. -
                                                                                                                                                    97. model/screenless/transfer_method
                                                                                                                                                    98. -
                                                                                                                                                    99. model/screenless/transfer_payment
                                                                                                                                                    100. -
                                                                                                                                                    101. model/tokenization/tokenization
                                                                                                                                                    102. -
                                                                                                                                                    103. model/tpay_configuration
                                                                                                                                                    104. -
                                                                                                                                                    105. model/tpay_environment
                                                                                                                                                    106. -
                                                                                                                                                    107. model/transaction/single_transaction
                                                                                                                                                    108. -
                                                                                                                                                    109. model/transaction/token_payment
                                                                                                                                                    110. -
                                                                                                                                                    111. model/transaction/transaction
                                                                                                                                                    112. -
                                                                                                                                                    113. model/wallet_configuration
                                                                                                                                                    114. -
                                                                                                                                                    115. tpay_button
                                                                                                                                                    116. -
                                                                                                                                                    117. tpay_method_channel
                                                                                                                                                    118. -
                                                                                                                                                    119. tpay_platform_interface
                                                                                                                                                    120. -
                                                                                                                                                    121. util/google_pay_configuration_util
                                                                                                                                                    122. -
                                                                                                                                                    123. util/google_pay_util
                                                                                                                                                    124. -
                                                                                                                                                    125. util/payment_channels_util
                                                                                                                                                    126. -
                                                                                                                                                    127. util/result_util
                                                                                                                                                    128. -
                                                                                                                                                    129. util/screenless_result_util
                                                                                                                                                    130. +
                                                                                                                                                    131. model/apple_pay_configuration
                                                                                                                                                    132. +
                                                                                                                                                    133. model/certificate_pinning_configuration
                                                                                                                                                    134. +
                                                                                                                                                    135. model/google_pay_configuration
                                                                                                                                                    136. +
                                                                                                                                                    137. model/language/language
                                                                                                                                                    138. +
                                                                                                                                                    139. model/language/languages
                                                                                                                                                    140. +
                                                                                                                                                    141. model/language/localized_string
                                                                                                                                                    142. +
                                                                                                                                                    143. model/merchant/merchant
                                                                                                                                                    144. +
                                                                                                                                                    145. model/merchant/merchant_authorization
                                                                                                                                                    146. +
                                                                                                                                                    147. model/merchant/merchant_details
                                                                                                                                                    148. +
                                                                                                                                                    149. model/payer/payer
                                                                                                                                                    150. +
                                                                                                                                                    151. model/payer/payer_address
                                                                                                                                                    152. +
                                                                                                                                                    153. model/payer/payer_context
                                                                                                                                                    154. +
                                                                                                                                                    155. model/paymentChannel/payment_channel
                                                                                                                                                    156. +
                                                                                                                                                    157. model/paymentChannel/payment_constraint
                                                                                                                                                    158. +
                                                                                                                                                    159. model/paymentChannel/payment_group
                                                                                                                                                    160. +
                                                                                                                                                    161. model/paymentMethod/automatic_payment_methods
                                                                                                                                                    162. +
                                                                                                                                                    163. model/paymentMethod/blik_alias
                                                                                                                                                    164. +
                                                                                                                                                    165. model/paymentMethod/credit_card_brand
                                                                                                                                                    166. +
                                                                                                                                                    167. model/paymentMethod/digital_wallet
                                                                                                                                                    168. +
                                                                                                                                                    169. model/paymentMethod/installment_payment
                                                                                                                                                    170. +
                                                                                                                                                    171. model/paymentMethod/payment_method
                                                                                                                                                    172. +
                                                                                                                                                    173. model/paymentMethod/payment_methods
                                                                                                                                                    174. +
                                                                                                                                                    175. model/paymentMethod/tokenized_card
                                                                                                                                                    176. +
                                                                                                                                                    177. model/result/google_pay_configure_result
                                                                                                                                                    178. +
                                                                                                                                                    179. model/result/google_pay_open_result
                                                                                                                                                    180. +
                                                                                                                                                    181. model/result/payment_channels_result
                                                                                                                                                    182. +
                                                                                                                                                    183. model/result/result
                                                                                                                                                    184. +
                                                                                                                                                    185. model/result/screenless_result
                                                                                                                                                    186. +
                                                                                                                                                    187. model/screenless/ambiguous_alias
                                                                                                                                                    188. +
                                                                                                                                                    189. model/screenless/ambiguous_blik_payment
                                                                                                                                                    190. +
                                                                                                                                                    191. model/screenless/apple_pay_payment
                                                                                                                                                    192. +
                                                                                                                                                    193. model/screenless/blik_payment
                                                                                                                                                    194. +
                                                                                                                                                    195. model/screenless/callbacks
                                                                                                                                                    196. +
                                                                                                                                                    197. model/screenless/credit_card
                                                                                                                                                    198. +
                                                                                                                                                    199. model/screenless/credit_card_config
                                                                                                                                                    200. +
                                                                                                                                                    201. model/screenless/credit_card_payment
                                                                                                                                                    202. +
                                                                                                                                                    203. model/screenless/expiration_date
                                                                                                                                                    204. +
                                                                                                                                                    205. model/screenless/google_pay_environment
                                                                                                                                                    206. +
                                                                                                                                                    207. model/screenless/google_pay_payment
                                                                                                                                                    208. +
                                                                                                                                                    209. model/screenless/google_pay_utils_configuration
                                                                                                                                                    210. +
                                                                                                                                                    211. model/screenless/notifications
                                                                                                                                                    212. +
                                                                                                                                                    213. model/screenless/pay_po_payment
                                                                                                                                                    214. +
                                                                                                                                                    215. model/screenless/payment_details
                                                                                                                                                    216. +
                                                                                                                                                    217. model/screenless/raty_pekao_payment
                                                                                                                                                    218. +
                                                                                                                                                    219. model/screenless/recursive
                                                                                                                                                    220. +
                                                                                                                                                    221. model/screenless/redirects
                                                                                                                                                    222. +
                                                                                                                                                    223. model/screenless/screenless_payment
                                                                                                                                                    224. +
                                                                                                                                                    225. model/screenless/transfer_method
                                                                                                                                                    226. +
                                                                                                                                                    227. model/screenless/transfer_payment
                                                                                                                                                    228. +
                                                                                                                                                    229. model/tokenization/tokenization
                                                                                                                                                    230. +
                                                                                                                                                    231. model/tpay_configuration
                                                                                                                                                    232. +
                                                                                                                                                    233. model/tpay_environment
                                                                                                                                                    234. +
                                                                                                                                                    235. model/transaction/single_transaction
                                                                                                                                                    236. +
                                                                                                                                                    237. model/transaction/token_payment
                                                                                                                                                    238. +
                                                                                                                                                    239. model/transaction/transaction
                                                                                                                                                    240. +
                                                                                                                                                    241. model/wallet_configuration
                                                                                                                                                    242. +
                                                                                                                                                    243. tpay_button
                                                                                                                                                    244. +
                                                                                                                                                    245. tpay_method_channel
                                                                                                                                                    246. +
                                                                                                                                                    247. tpay_platform_interface
                                                                                                                                                    248. +
                                                                                                                                                    249. util/google_pay_configuration_util
                                                                                                                                                    250. +
                                                                                                                                                    251. util/google_pay_util
                                                                                                                                                    252. +
                                                                                                                                                    253. util/payment_channels_util
                                                                                                                                                    254. +
                                                                                                                                                    255. util/result_util
                                                                                                                                                    256. +
                                                                                                                                                    257. util/screenless_result_util
                                                                                                                                                    @@ -176,7 +173,7 @@
                                                                                                                                                    redirects library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                    diff --git a/doc/model_screenless_redirects/model_screenless_redirects-library-sidebar.html b/doc/model_screenless_redirects/model_screenless_redirects-library-sidebar.html index 2433fb64..c6c07328 100644 --- a/doc/model_screenless_redirects/model_screenless_redirects-library-sidebar.html +++ b/doc/model_screenless_redirects/model_screenless_redirects-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                                      -
                                                                                                                                                    1. Classes
                                                                                                                                                    2. +
                                                                                                                                                    3. Classes
                                                                                                                                                    4. Redirects
                                                                                                                                                    5. diff --git a/doc/model_screenless_redirects/model_screenless_redirects-library.html b/doc/model_screenless_redirects/model_screenless_redirects-library.html index df7ea01f..83de2aa0 100644 --- a/doc/model_screenless_redirects/model_screenless_redirects-library.html +++ b/doc/model_screenless_redirects/model_screenless_redirects-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                                      New URL

                                                                                                                                                      +

                                                                                                                                                      New URL

                                                                                                                                                      \ No newline at end of file diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment-class-sidebar.html b/doc/model_screenless_screenless_payment/ScreenlessPayment-class-sidebar.html index 20319dc9..9a42a66d 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment-class-sidebar.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                                      1. Constructors
                                                                                                                                                      2. -
                                                                                                                                                      3. ScreenlessPayment
                                                                                                                                                      4. +
                                                                                                                                                      5. new
                                                                                                                                                      6. fromJson
                                                                                                                                                      7. diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment-class.html b/doc/model_screenless_screenless_payment/ScreenlessPayment-class.html index 7f2ba145..ca0f8cda 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment-class.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                        ScreenlessPayment
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        ScreenlessPayment class
                                                                                                                                                        Annotations
                                                                                                                                                        @@ -97,8 +94,8 @@

                                                                                                                                                        ScreenlessPayment class

                                                                                                                                                        Constructors

                                                                                                                                                        -
                                                                                                                                                        - ScreenlessPayment({required PaymentDetails paymentDetails, required Payer payer, Callbacks? callbacks}) +
                                                                                                                                                        + ScreenlessPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks callbacks})
                                                                                                                                                        @@ -120,7 +117,7 @@

                                                                                                                                                        Properties

                                                                                                                                                        callbacks - Callbacks? + Callbacks
                                                                                                                                                        @@ -250,7 +247,7 @@

                                                                                                                                                        Operators

                                                                                                                                                        @@ -263,7 +260,7 @@
                                                                                                                                                        screenless_payment library
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.fromJson.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.fromJson.html index 82001726..66efef41 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.fromJson.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        Implementation

                                                                                                                                                        @@ -94,7 +91,7 @@
                                                                                                                                                        ScreenlessPayment class
                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.html index 1a4cbd26..8915671c 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.html @@ -4,8 +4,8 @@ - - ScreenlessPayment constructor - ScreenlessPayment - screenless_payment library - Dart API + + ScreenlessPayment.new constructor - ScreenlessPayment - screenless_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                                        ScreenlessPayment
                                                                                                                                                        +
                                                                                                                                                        ScreenlessPayment.new
                                                                                                                                                        -
                                                                                                                                                        - -
                                                                                                                                                        +
                                                                                                                                                        ScreenlessPayment constructor ScreenlessPayment({
                                                                                                                                                        1. required PaymentDetails paymentDetails,
                                                                                                                                                        2. required Payer payer,
                                                                                                                                                        3. -
                                                                                                                                                        4. Callbacks? callbacks,
                                                                                                                                                        5. +
                                                                                                                                                        6. required Callbacks callbacks,
                                                                                                                                                        })
                                                                                                                                          @@ -71,7 +68,7 @@

                                                                                                                                          Implementation

                                                                                                                                          ScreenlessPayment({
                                                                                                                                             required this.paymentDetails,
                                                                                                                                             required this.payer,
                                                                                                                                          -  this.callbacks
                                                                                                                                          +  required this.callbacks
                                                                                                                                           });
                                                                                                                                        @@ -86,9 +83,9 @@

                                                                                                                                        Implementation

                                                                                                                                        ScreenlessPayment class
                                                                                                                                        @@ -100,7 +97,7 @@
                                                                                                                                        ScreenlessPayment class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/callbacks.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/callbacks.html index 01ff4936..334f7734 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment/callbacks.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment/callbacks.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        callbacks property
                                                                                                                                        - Callbacks? + Callbacks callbacks
                                                                                                                                        final
                                                                                                                                        @@ -68,7 +65,7 @@

                                                                                                                                        callbacks property

                                                                                                                                        Implementation

                                                                                                                                        -
                                                                                                                                        final Callbacks? callbacks;
                                                                                                                                        +
                                                                                                                                        final Callbacks callbacks;
                                                                                                                                        @@ -83,7 +80,7 @@

                                                                                                                                        Implementation

                                                                                                                                        @@ -97,7 +94,7 @@
                                                                                                                                        ScreenlessPayment class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/payer.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/payer.html index 73aa12f6..d931313f 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment/payer.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment/payer.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                        ScreenlessPayment class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/paymentDetails.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/paymentDetails.html index 7b124560..4c9e7bb7 100644 --- a/doc/model_screenless_screenless_payment/ScreenlessPayment/paymentDetails.html +++ b/doc/model_screenless_screenless_payment/ScreenlessPayment/paymentDetails.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                        ScreenlessPayment class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/index.html b/doc/model_screenless_screenless_payment/index.html index b5a8b106..ca002ccb 100644 --- a/doc/model_screenless_screenless_payment/index.html +++ b/doc/model_screenless_screenless_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Classes
                                                                                                                                        flutter_tpay package
                                                                                                                                        1. Libraries
                                                                                                                                        2. -
                                                                                                                                        3. model/apple_pay_configuration
                                                                                                                                        4. -
                                                                                                                                        5. model/certificate_pinning_configuration
                                                                                                                                        6. -
                                                                                                                                        7. model/google_pay_configuration
                                                                                                                                        8. -
                                                                                                                                        9. model/language/language
                                                                                                                                        10. -
                                                                                                                                        11. model/language/languages
                                                                                                                                        12. -
                                                                                                                                        13. model/language/localized_string
                                                                                                                                        14. -
                                                                                                                                        15. model/merchant/merchant
                                                                                                                                        16. -
                                                                                                                                        17. model/merchant/merchant_authorization
                                                                                                                                        18. -
                                                                                                                                        19. model/merchant/merchant_details
                                                                                                                                        20. -
                                                                                                                                        21. model/payer/payer
                                                                                                                                        22. -
                                                                                                                                        23. model/payer/payer_address
                                                                                                                                        24. -
                                                                                                                                        25. model/payer/payer_context
                                                                                                                                        26. -
                                                                                                                                        27. model/paymentChannel/payment_channel
                                                                                                                                        28. -
                                                                                                                                        29. model/paymentChannel/payment_constraint
                                                                                                                                        30. -
                                                                                                                                        31. model/paymentChannel/payment_group
                                                                                                                                        32. -
                                                                                                                                        33. model/paymentMethod/automatic_payment_methods
                                                                                                                                        34. -
                                                                                                                                        35. model/paymentMethod/blik_alias
                                                                                                                                        36. -
                                                                                                                                        37. model/paymentMethod/credit_card_brand
                                                                                                                                        38. -
                                                                                                                                        39. model/paymentMethod/digital_wallet
                                                                                                                                        40. -
                                                                                                                                        41. model/paymentMethod/installment_payment
                                                                                                                                        42. -
                                                                                                                                        43. model/paymentMethod/payment_method
                                                                                                                                        44. -
                                                                                                                                        45. model/paymentMethod/payment_methods
                                                                                                                                        46. -
                                                                                                                                        47. model/paymentMethod/tokenized_card
                                                                                                                                        48. -
                                                                                                                                        49. model/result/google_pay_configure_result
                                                                                                                                        50. -
                                                                                                                                        51. model/result/google_pay_open_result
                                                                                                                                        52. -
                                                                                                                                        53. model/result/payment_channels_result
                                                                                                                                        54. -
                                                                                                                                        55. model/result/result
                                                                                                                                        56. -
                                                                                                                                        57. model/result/screenless_result
                                                                                                                                        58. -
                                                                                                                                        59. model/screenless/ambiguous_alias
                                                                                                                                        60. -
                                                                                                                                        61. model/screenless/ambiguous_blik_payment
                                                                                                                                        62. -
                                                                                                                                        63. model/screenless/apple_pay_payment
                                                                                                                                        64. -
                                                                                                                                        65. model/screenless/blik_payment
                                                                                                                                        66. -
                                                                                                                                        67. model/screenless/callbacks
                                                                                                                                        68. -
                                                                                                                                        69. model/screenless/credit_card
                                                                                                                                        70. -
                                                                                                                                        71. model/screenless/credit_card_config
                                                                                                                                        72. -
                                                                                                                                        73. model/screenless/credit_card_payment
                                                                                                                                        74. -
                                                                                                                                        75. model/screenless/expiration_date
                                                                                                                                        76. -
                                                                                                                                        77. model/screenless/google_pay_environment
                                                                                                                                        78. -
                                                                                                                                        79. model/screenless/google_pay_payment
                                                                                                                                        80. -
                                                                                                                                        81. model/screenless/google_pay_utils_configuration
                                                                                                                                        82. -
                                                                                                                                        83. model/screenless/notifications
                                                                                                                                        84. -
                                                                                                                                        85. model/screenless/pay_po_payment
                                                                                                                                        86. -
                                                                                                                                        87. model/screenless/payment_details
                                                                                                                                        88. -
                                                                                                                                        89. model/screenless/raty_pekao_payment
                                                                                                                                        90. -
                                                                                                                                        91. model/screenless/recursive
                                                                                                                                        92. -
                                                                                                                                        93. model/screenless/redirects
                                                                                                                                        94. -
                                                                                                                                        95. model/screenless/screenless_payment
                                                                                                                                        96. -
                                                                                                                                        97. model/screenless/transfer_method
                                                                                                                                        98. -
                                                                                                                                        99. model/screenless/transfer_payment
                                                                                                                                        100. -
                                                                                                                                        101. model/tokenization/tokenization
                                                                                                                                        102. -
                                                                                                                                        103. model/tpay_configuration
                                                                                                                                        104. -
                                                                                                                                        105. model/tpay_environment
                                                                                                                                        106. -
                                                                                                                                        107. model/transaction/single_transaction
                                                                                                                                        108. -
                                                                                                                                        109. model/transaction/token_payment
                                                                                                                                        110. -
                                                                                                                                        111. model/transaction/transaction
                                                                                                                                        112. -
                                                                                                                                        113. model/wallet_configuration
                                                                                                                                        114. -
                                                                                                                                        115. tpay_button
                                                                                                                                        116. -
                                                                                                                                        117. tpay_method_channel
                                                                                                                                        118. -
                                                                                                                                        119. tpay_platform_interface
                                                                                                                                        120. -
                                                                                                                                        121. util/google_pay_configuration_util
                                                                                                                                        122. -
                                                                                                                                        123. util/google_pay_util
                                                                                                                                        124. -
                                                                                                                                        125. util/payment_channels_util
                                                                                                                                        126. -
                                                                                                                                        127. util/result_util
                                                                                                                                        128. -
                                                                                                                                        129. util/screenless_result_util
                                                                                                                                        130. +
                                                                                                                                        131. model/apple_pay_configuration
                                                                                                                                        132. +
                                                                                                                                        133. model/certificate_pinning_configuration
                                                                                                                                        134. +
                                                                                                                                        135. model/google_pay_configuration
                                                                                                                                        136. +
                                                                                                                                        137. model/language/language
                                                                                                                                        138. +
                                                                                                                                        139. model/language/languages
                                                                                                                                        140. +
                                                                                                                                        141. model/language/localized_string
                                                                                                                                        142. +
                                                                                                                                        143. model/merchant/merchant
                                                                                                                                        144. +
                                                                                                                                        145. model/merchant/merchant_authorization
                                                                                                                                        146. +
                                                                                                                                        147. model/merchant/merchant_details
                                                                                                                                        148. +
                                                                                                                                        149. model/payer/payer
                                                                                                                                        150. +
                                                                                                                                        151. model/payer/payer_address
                                                                                                                                        152. +
                                                                                                                                        153. model/payer/payer_context
                                                                                                                                        154. +
                                                                                                                                        155. model/paymentChannel/payment_channel
                                                                                                                                        156. +
                                                                                                                                        157. model/paymentChannel/payment_constraint
                                                                                                                                        158. +
                                                                                                                                        159. model/paymentChannel/payment_group
                                                                                                                                        160. +
                                                                                                                                        161. model/paymentMethod/automatic_payment_methods
                                                                                                                                        162. +
                                                                                                                                        163. model/paymentMethod/blik_alias
                                                                                                                                        164. +
                                                                                                                                        165. model/paymentMethod/credit_card_brand
                                                                                                                                        166. +
                                                                                                                                        167. model/paymentMethod/digital_wallet
                                                                                                                                        168. +
                                                                                                                                        169. model/paymentMethod/installment_payment
                                                                                                                                        170. +
                                                                                                                                        171. model/paymentMethod/payment_method
                                                                                                                                        172. +
                                                                                                                                        173. model/paymentMethod/payment_methods
                                                                                                                                        174. +
                                                                                                                                        175. model/paymentMethod/tokenized_card
                                                                                                                                        176. +
                                                                                                                                        177. model/result/google_pay_configure_result
                                                                                                                                        178. +
                                                                                                                                        179. model/result/google_pay_open_result
                                                                                                                                        180. +
                                                                                                                                        181. model/result/payment_channels_result
                                                                                                                                        182. +
                                                                                                                                        183. model/result/result
                                                                                                                                        184. +
                                                                                                                                        185. model/result/screenless_result
                                                                                                                                        186. +
                                                                                                                                        187. model/screenless/ambiguous_alias
                                                                                                                                        188. +
                                                                                                                                        189. model/screenless/ambiguous_blik_payment
                                                                                                                                        190. +
                                                                                                                                        191. model/screenless/apple_pay_payment
                                                                                                                                        192. +
                                                                                                                                        193. model/screenless/blik_payment
                                                                                                                                        194. +
                                                                                                                                        195. model/screenless/callbacks
                                                                                                                                        196. +
                                                                                                                                        197. model/screenless/credit_card
                                                                                                                                        198. +
                                                                                                                                        199. model/screenless/credit_card_config
                                                                                                                                        200. +
                                                                                                                                        201. model/screenless/credit_card_payment
                                                                                                                                        202. +
                                                                                                                                        203. model/screenless/expiration_date
                                                                                                                                        204. +
                                                                                                                                        205. model/screenless/google_pay_environment
                                                                                                                                        206. +
                                                                                                                                        207. model/screenless/google_pay_payment
                                                                                                                                        208. +
                                                                                                                                        209. model/screenless/google_pay_utils_configuration
                                                                                                                                        210. +
                                                                                                                                        211. model/screenless/notifications
                                                                                                                                        212. +
                                                                                                                                        213. model/screenless/pay_po_payment
                                                                                                                                        214. +
                                                                                                                                        215. model/screenless/payment_details
                                                                                                                                        216. +
                                                                                                                                        217. model/screenless/raty_pekao_payment
                                                                                                                                        218. +
                                                                                                                                        219. model/screenless/recursive
                                                                                                                                        220. +
                                                                                                                                        221. model/screenless/redirects
                                                                                                                                        222. +
                                                                                                                                        223. model/screenless/screenless_payment
                                                                                                                                        224. +
                                                                                                                                        225. model/screenless/transfer_method
                                                                                                                                        226. +
                                                                                                                                        227. model/screenless/transfer_payment
                                                                                                                                        228. +
                                                                                                                                        229. model/tokenization/tokenization
                                                                                                                                        230. +
                                                                                                                                        231. model/tpay_configuration
                                                                                                                                        232. +
                                                                                                                                        233. model/tpay_environment
                                                                                                                                        234. +
                                                                                                                                        235. model/transaction/single_transaction
                                                                                                                                        236. +
                                                                                                                                        237. model/transaction/token_payment
                                                                                                                                        238. +
                                                                                                                                        239. model/transaction/transaction
                                                                                                                                        240. +
                                                                                                                                        241. model/wallet_configuration
                                                                                                                                        242. +
                                                                                                                                        243. tpay_button
                                                                                                                                        244. +
                                                                                                                                        245. tpay_method_channel
                                                                                                                                        246. +
                                                                                                                                        247. tpay_platform_interface
                                                                                                                                        248. +
                                                                                                                                        249. util/google_pay_configuration_util
                                                                                                                                        250. +
                                                                                                                                        251. util/google_pay_util
                                                                                                                                        252. +
                                                                                                                                        253. util/payment_channels_util
                                                                                                                                        254. +
                                                                                                                                        255. util/result_util
                                                                                                                                        256. +
                                                                                                                                        257. util/screenless_result_util
                                                                                                                                        @@ -177,7 +174,7 @@
                                                                                                                                        screenless_payment library
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library-sidebar.html b/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library-sidebar.html index 4f9c4ec9..110286bb 100644 --- a/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library-sidebar.html +++ b/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                          -
                                                                                                                                        1. Classes
                                                                                                                                        2. +
                                                                                                                                        3. Classes
                                                                                                                                        4. ScreenlessPayment
                                                                                                                                        5. diff --git a/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library.html b/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library.html index 98f06305..3f68af85 100644 --- a/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library.html +++ b/doc/model_screenless_screenless_payment/model_screenless_screenless_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                          New URL

                                                                                                                                          +

                                                                                                                                          New URL

                                                                                                                                          \ No newline at end of file diff --git a/doc/model_screenless_transfer_method/TransferMethod-class-sidebar.html b/doc/model_screenless_transfer_method/TransferMethod-class-sidebar.html index 7ba7a4a2..d74c8d44 100644 --- a/doc/model_screenless_transfer_method/TransferMethod-class-sidebar.html +++ b/doc/model_screenless_transfer_method/TransferMethod-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                          1. Constructors
                                                                                                                                          2. -
                                                                                                                                          3. TransferMethod
                                                                                                                                          4. +
                                                                                                                                          5. new
                                                                                                                                          6. fromJson
                                                                                                                                          7. diff --git a/doc/model_screenless_transfer_method/TransferMethod-class.html b/doc/model_screenless_transfer_method/TransferMethod-class.html index 3a6589d4..f52f8fcb 100644 --- a/doc/model_screenless_transfer_method/TransferMethod-class.html +++ b/doc/model_screenless_transfer_method/TransferMethod-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                            TransferMethod
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            TransferMethod class
                                                                                                                                            Annotations
                                                                                                                                            @@ -92,7 +89,7 @@

                                                                                                                                            TransferMethod class

                                                                                                                                            Constructors

                                                                                                                                            -
                                                                                                                                            +
                                                                                                                                            TransferMethod({required String id, required String name, required String imageUrl})
                                                                                                                                            @@ -259,7 +256,7 @@

                                                                                                                                            Operators

                                                                                                                                            @@ -272,7 +269,7 @@
                                                                                                                                            transfer_method library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.fromJson.html b/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.fromJson.html index b9bac41e..6de958bd 100644 --- a/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.fromJson.html +++ b/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation

                                                                                                                                            @@ -94,7 +91,7 @@
                                                                                                                                            TransferMethod class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.html b/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.html index 99d7d376..c4d61284 100644 --- a/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.html +++ b/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.html @@ -4,8 +4,8 @@ - - TransferMethod constructor - TransferMethod - transfer_method library - Dart API + + TransferMethod.new constructor - TransferMethod - transfer_method library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                            TransferMethod
                                                                                                                                            +
                                                                                                                                            TransferMethod.new
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation
                                                                                                                                            TransferMethod class
                                                                                                                                            @@ -100,7 +97,7 @@
                                                                                                                                            TransferMethod class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/TransferMethod/id.html b/doc/model_screenless_transfer_method/TransferMethod/id.html index 7364f113..a147f079 100644 --- a/doc/model_screenless_transfer_method/TransferMethod/id.html +++ b/doc/model_screenless_transfer_method/TransferMethod/id.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            TransferMethod class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/TransferMethod/imageUrl.html b/doc/model_screenless_transfer_method/TransferMethod/imageUrl.html index c40118e0..54cd0248 100644 --- a/doc/model_screenless_transfer_method/TransferMethod/imageUrl.html +++ b/doc/model_screenless_transfer_method/TransferMethod/imageUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            TransferMethod class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/TransferMethod/name.html b/doc/model_screenless_transfer_method/TransferMethod/name.html index 63019645..17c2a605 100644 --- a/doc/model_screenless_transfer_method/TransferMethod/name.html +++ b/doc/model_screenless_transfer_method/TransferMethod/name.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            TransferMethod class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/TransferMethod/toJson.html b/doc/model_screenless_transfer_method/TransferMethod/toJson.html index e1c04647..bcf52895 100644 --- a/doc/model_screenless_transfer_method/TransferMethod/toJson.html +++ b/doc/model_screenless_transfer_method/TransferMethod/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                                            TransferMethod class
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/index.html b/doc/model_screenless_transfer_method/index.html index 62c61edb..c4642ea2 100644 --- a/doc/model_screenless_transfer_method/index.html +++ b/doc/model_screenless_transfer_method/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Classes
                                                                                                                                            flutter_tpay package
                                                                                                                                            1. Libraries
                                                                                                                                            2. -
                                                                                                                                            3. model/apple_pay_configuration
                                                                                                                                            4. -
                                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                                            6. -
                                                                                                                                            7. model/google_pay_configuration
                                                                                                                                            8. -
                                                                                                                                            9. model/language/language
                                                                                                                                            10. -
                                                                                                                                            11. model/language/languages
                                                                                                                                            12. -
                                                                                                                                            13. model/language/localized_string
                                                                                                                                            14. -
                                                                                                                                            15. model/merchant/merchant
                                                                                                                                            16. -
                                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                                            18. -
                                                                                                                                            19. model/merchant/merchant_details
                                                                                                                                            20. -
                                                                                                                                            21. model/payer/payer
                                                                                                                                            22. -
                                                                                                                                            23. model/payer/payer_address
                                                                                                                                            24. -
                                                                                                                                            25. model/payer/payer_context
                                                                                                                                            26. -
                                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                                            28. -
                                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                                            30. -
                                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                                            32. -
                                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                                            34. -
                                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                                            36. -
                                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                                            38. -
                                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                                            40. -
                                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                                            42. -
                                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                                            44. -
                                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                                            46. -
                                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                                            48. -
                                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                                            50. -
                                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                                            52. -
                                                                                                                                            53. model/result/payment_channels_result
                                                                                                                                            54. -
                                                                                                                                            55. model/result/result
                                                                                                                                            56. -
                                                                                                                                            57. model/result/screenless_result
                                                                                                                                            58. -
                                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                                            60. -
                                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                                            62. -
                                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                                            64. -
                                                                                                                                            65. model/screenless/blik_payment
                                                                                                                                            66. -
                                                                                                                                            67. model/screenless/callbacks
                                                                                                                                            68. -
                                                                                                                                            69. model/screenless/credit_card
                                                                                                                                            70. -
                                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                                            72. -
                                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                                            74. -
                                                                                                                                            75. model/screenless/expiration_date
                                                                                                                                            76. -
                                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                                            78. -
                                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                                            80. -
                                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                                            82. -
                                                                                                                                            83. model/screenless/notifications
                                                                                                                                            84. -
                                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                                            86. -
                                                                                                                                            87. model/screenless/payment_details
                                                                                                                                            88. -
                                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                                            90. -
                                                                                                                                            91. model/screenless/recursive
                                                                                                                                            92. -
                                                                                                                                            93. model/screenless/redirects
                                                                                                                                            94. -
                                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                                            96. -
                                                                                                                                            97. model/screenless/transfer_method
                                                                                                                                            98. -
                                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                                            100. -
                                                                                                                                            101. model/tokenization/tokenization
                                                                                                                                            102. -
                                                                                                                                            103. model/tpay_configuration
                                                                                                                                            104. -
                                                                                                                                            105. model/tpay_environment
                                                                                                                                            106. -
                                                                                                                                            107. model/transaction/single_transaction
                                                                                                                                            108. -
                                                                                                                                            109. model/transaction/token_payment
                                                                                                                                            110. -
                                                                                                                                            111. model/transaction/transaction
                                                                                                                                            112. -
                                                                                                                                            113. model/wallet_configuration
                                                                                                                                            114. -
                                                                                                                                            115. tpay_button
                                                                                                                                            116. -
                                                                                                                                            117. tpay_method_channel
                                                                                                                                            118. -
                                                                                                                                            119. tpay_platform_interface
                                                                                                                                            120. -
                                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                                            122. -
                                                                                                                                            123. util/google_pay_util
                                                                                                                                            124. -
                                                                                                                                            125. util/payment_channels_util
                                                                                                                                            126. -
                                                                                                                                            127. util/result_util
                                                                                                                                            128. -
                                                                                                                                            129. util/screenless_result_util
                                                                                                                                            130. +
                                                                                                                                            131. model/apple_pay_configuration
                                                                                                                                            132. +
                                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                                            134. +
                                                                                                                                            135. model/google_pay_configuration
                                                                                                                                            136. +
                                                                                                                                            137. model/language/language
                                                                                                                                            138. +
                                                                                                                                            139. model/language/languages
                                                                                                                                            140. +
                                                                                                                                            141. model/language/localized_string
                                                                                                                                            142. +
                                                                                                                                            143. model/merchant/merchant
                                                                                                                                            144. +
                                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                                            146. +
                                                                                                                                            147. model/merchant/merchant_details
                                                                                                                                            148. +
                                                                                                                                            149. model/payer/payer
                                                                                                                                            150. +
                                                                                                                                            151. model/payer/payer_address
                                                                                                                                            152. +
                                                                                                                                            153. model/payer/payer_context
                                                                                                                                            154. +
                                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                                            156. +
                                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                                            158. +
                                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                                            160. +
                                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                                            162. +
                                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                                            164. +
                                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                                            166. +
                                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                                            168. +
                                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                                            170. +
                                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                                            172. +
                                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                                            174. +
                                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                                            176. +
                                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                                            178. +
                                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                                            180. +
                                                                                                                                            181. model/result/payment_channels_result
                                                                                                                                            182. +
                                                                                                                                            183. model/result/result
                                                                                                                                            184. +
                                                                                                                                            185. model/result/screenless_result
                                                                                                                                            186. +
                                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                                            188. +
                                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                                            190. +
                                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                                            192. +
                                                                                                                                            193. model/screenless/blik_payment
                                                                                                                                            194. +
                                                                                                                                            195. model/screenless/callbacks
                                                                                                                                            196. +
                                                                                                                                            197. model/screenless/credit_card
                                                                                                                                            198. +
                                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                                            200. +
                                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                                            202. +
                                                                                                                                            203. model/screenless/expiration_date
                                                                                                                                            204. +
                                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                                            206. +
                                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                                            208. +
                                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                                            210. +
                                                                                                                                            211. model/screenless/notifications
                                                                                                                                            212. +
                                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                                            214. +
                                                                                                                                            215. model/screenless/payment_details
                                                                                                                                            216. +
                                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                                            218. +
                                                                                                                                            219. model/screenless/recursive
                                                                                                                                            220. +
                                                                                                                                            221. model/screenless/redirects
                                                                                                                                            222. +
                                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                                            224. +
                                                                                                                                            225. model/screenless/transfer_method
                                                                                                                                            226. +
                                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                                            228. +
                                                                                                                                            229. model/tokenization/tokenization
                                                                                                                                            230. +
                                                                                                                                            231. model/tpay_configuration
                                                                                                                                            232. +
                                                                                                                                            233. model/tpay_environment
                                                                                                                                            234. +
                                                                                                                                            235. model/transaction/single_transaction
                                                                                                                                            236. +
                                                                                                                                            237. model/transaction/token_payment
                                                                                                                                            238. +
                                                                                                                                            239. model/transaction/transaction
                                                                                                                                            240. +
                                                                                                                                            241. model/wallet_configuration
                                                                                                                                            242. +
                                                                                                                                            243. tpay_button
                                                                                                                                            244. +
                                                                                                                                            245. tpay_method_channel
                                                                                                                                            246. +
                                                                                                                                            247. tpay_platform_interface
                                                                                                                                            248. +
                                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                                            250. +
                                                                                                                                            251. util/google_pay_util
                                                                                                                                            252. +
                                                                                                                                            253. util/payment_channels_util
                                                                                                                                            254. +
                                                                                                                                            255. util/result_util
                                                                                                                                            256. +
                                                                                                                                            257. util/screenless_result_util
                                                                                                                                            @@ -177,7 +174,7 @@
                                                                                                                                            transfer_method library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_screenless_transfer_method/model_screenless_transfer_method-library-sidebar.html b/doc/model_screenless_transfer_method/model_screenless_transfer_method-library-sidebar.html index 4f56779c..355428a2 100644 --- a/doc/model_screenless_transfer_method/model_screenless_transfer_method-library-sidebar.html +++ b/doc/model_screenless_transfer_method/model_screenless_transfer_method-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                              -
                                                                                                                                            1. Classes
                                                                                                                                            2. +
                                                                                                                                            3. Classes
                                                                                                                                            4. TransferMethod
                                                                                                                                            5. diff --git a/doc/model_screenless_transfer_method/model_screenless_transfer_method-library.html b/doc/model_screenless_transfer_method/model_screenless_transfer_method-library.html index a951e872..09711853 100644 --- a/doc/model_screenless_transfer_method/model_screenless_transfer_method-library.html +++ b/doc/model_screenless_transfer_method/model_screenless_transfer_method-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                              New URL

                                                                                                                                              +

                                                                                                                                              New URL

                                                                                                                                              \ No newline at end of file diff --git a/doc/model_screenless_transfer_payment/TransferPayment-class-sidebar.html b/doc/model_screenless_transfer_payment/TransferPayment-class-sidebar.html index a19e53a6..c5c78c76 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment-class-sidebar.html +++ b/doc/model_screenless_transfer_payment/TransferPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                              1. Constructors
                                                                                                                                              2. -
                                                                                                                                              3. TransferPayment
                                                                                                                                              4. +
                                                                                                                                              5. new
                                                                                                                                              6. fromJson
                                                                                                                                              7. @@ -10,10 +10,6 @@ Properties -
                                                                                                                                              8. - bankName -
                                                                                                                                              9. -
                                                                                                                                              10. callbacks
                                                                                                                                              11. diff --git a/doc/model_screenless_transfer_payment/TransferPayment-class.html b/doc/model_screenless_transfer_payment/TransferPayment-class.html index b4a273ba..639c3d78 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment-class.html +++ b/doc/model_screenless_transfer_payment/TransferPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                TransferPayment
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                TransferPayment class

                                                                                                                                                Class responsible for storing information about transfer payment

                                                                                                                                        @@ -86,7 +82,7 @@

                                                                                                                                        TransferPayment class
                                                                                                                                        Annotations
                                                                                                                                        @@ -98,8 +94,8 @@

                                                                                                                                        TransferPayment class

                                                                                                                                        Constructors

                                                                                                                                        -
                                                                                                                                        - TransferPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, required int channelId, required String bankName}) +
                                                                                                                                        + TransferPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks callbacks, required int channelId})
                                                                                                                                        @@ -119,21 +115,9 @@

                                                                                                                                        Constructors

                                                                                                                                        id="instance-properties">

                                                                                                                                        Properties

                                                                                                                                        -
                                                                                                                                        - bankName - String - - -
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        final
                                                                                                                                        - -
                                                                                                                                        -
                                                                                                                                        callbacks - Callbacks? + Callbacks
                                                                                                                                        @@ -288,7 +272,7 @@

                                                                                                                                        Operators

                                                                                                                                        @@ -301,7 +285,7 @@
                                                                                                                                        transfer_payment library
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.fromJson.html b/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.fromJson.html index edefab4b..57434643 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.fromJson.html +++ b/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        Implementation

                                                                                                                                        @@ -94,7 +91,7 @@
                                                                                                                                        TransferPayment class
                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.html b/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.html index 5a68b5c3..9a11390e 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.html +++ b/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.html @@ -4,8 +4,8 @@ - - TransferPayment constructor - TransferPayment - transfer_payment library - Dart API + + TransferPayment.new constructor - TransferPayment - transfer_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                        TransferPayment
                                                                                                                                        +
                                                                                                                                        TransferPayment.new
                                                                                                                                        -
                                                                                                                                        - -
                                                                                                                                        +
                                                                                                                                        TransferPayment constructor TransferPayment({
                                                                                                                                        1. required PaymentDetails paymentDetails,
                                                                                                                                        2. required Payer payer,
                                                                                                                                        3. -
                                                                                                                                        4. required Callbacks? callbacks,
                                                                                                                                        5. +
                                                                                                                                        6. required Callbacks callbacks,
                                                                                                                                        7. required int channelId,
                                                                                                                                        8. -
                                                                                                                                        9. required String bankName,
                                                                                                                                        })
                                                                                                                                    @@ -74,8 +70,7 @@

                                                                                                                                    Implementation

                                                                                                                                    required super.paymentDetails, required super.payer, required super.callbacks, - required this.channelId, - required this.bankName + required this.channelId });
                                                                                                                                  @@ -90,9 +85,9 @@

                                                                                                                                  Implementation

                                                                                                                                  TransferPayment class
                                                                                                                                  @@ -104,7 +99,7 @@
                                                                                                                                  TransferPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_screenless_transfer_payment/TransferPayment/channelId.html b/doc/model_screenless_transfer_payment/TransferPayment/channelId.html index 857dc0c6..788b061d 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment/channelId.html +++ b/doc/model_screenless_transfer_payment/TransferPayment/channelId.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                  TransferPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_screenless_transfer_payment/TransferPayment/toJson.html b/doc/model_screenless_transfer_payment/TransferPayment/toJson.html index 7029a160..ac245e24 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment/toJson.html +++ b/doc/model_screenless_transfer_payment/TransferPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                  TransferPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_screenless_transfer_payment/index.html b/doc/model_screenless_transfer_payment/index.html index 8911d7b2..f637aab6 100644 --- a/doc/model_screenless_transfer_payment/index.html +++ b/doc/model_screenless_transfer_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Classes
                                                                                                                                  flutter_tpay package
                                                                                                                                  1. Libraries
                                                                                                                                  2. -
                                                                                                                                  3. model/apple_pay_configuration
                                                                                                                                  4. -
                                                                                                                                  5. model/certificate_pinning_configuration
                                                                                                                                  6. -
                                                                                                                                  7. model/google_pay_configuration
                                                                                                                                  8. -
                                                                                                                                  9. model/language/language
                                                                                                                                  10. -
                                                                                                                                  11. model/language/languages
                                                                                                                                  12. -
                                                                                                                                  13. model/language/localized_string
                                                                                                                                  14. -
                                                                                                                                  15. model/merchant/merchant
                                                                                                                                  16. -
                                                                                                                                  17. model/merchant/merchant_authorization
                                                                                                                                  18. -
                                                                                                                                  19. model/merchant/merchant_details
                                                                                                                                  20. -
                                                                                                                                  21. model/payer/payer
                                                                                                                                  22. -
                                                                                                                                  23. model/payer/payer_address
                                                                                                                                  24. -
                                                                                                                                  25. model/payer/payer_context
                                                                                                                                  26. -
                                                                                                                                  27. model/paymentChannel/payment_channel
                                                                                                                                  28. -
                                                                                                                                  29. model/paymentChannel/payment_constraint
                                                                                                                                  30. -
                                                                                                                                  31. model/paymentChannel/payment_group
                                                                                                                                  32. -
                                                                                                                                  33. model/paymentMethod/automatic_payment_methods
                                                                                                                                  34. -
                                                                                                                                  35. model/paymentMethod/blik_alias
                                                                                                                                  36. -
                                                                                                                                  37. model/paymentMethod/credit_card_brand
                                                                                                                                  38. -
                                                                                                                                  39. model/paymentMethod/digital_wallet
                                                                                                                                  40. -
                                                                                                                                  41. model/paymentMethod/installment_payment
                                                                                                                                  42. -
                                                                                                                                  43. model/paymentMethod/payment_method
                                                                                                                                  44. -
                                                                                                                                  45. model/paymentMethod/payment_methods
                                                                                                                                  46. -
                                                                                                                                  47. model/paymentMethod/tokenized_card
                                                                                                                                  48. -
                                                                                                                                  49. model/result/google_pay_configure_result
                                                                                                                                  50. -
                                                                                                                                  51. model/result/google_pay_open_result
                                                                                                                                  52. -
                                                                                                                                  53. model/result/payment_channels_result
                                                                                                                                  54. -
                                                                                                                                  55. model/result/result
                                                                                                                                  56. -
                                                                                                                                  57. model/result/screenless_result
                                                                                                                                  58. -
                                                                                                                                  59. model/screenless/ambiguous_alias
                                                                                                                                  60. -
                                                                                                                                  61. model/screenless/ambiguous_blik_payment
                                                                                                                                  62. -
                                                                                                                                  63. model/screenless/apple_pay_payment
                                                                                                                                  64. -
                                                                                                                                  65. model/screenless/blik_payment
                                                                                                                                  66. -
                                                                                                                                  67. model/screenless/callbacks
                                                                                                                                  68. -
                                                                                                                                  69. model/screenless/credit_card
                                                                                                                                  70. -
                                                                                                                                  71. model/screenless/credit_card_config
                                                                                                                                  72. -
                                                                                                                                  73. model/screenless/credit_card_payment
                                                                                                                                  74. -
                                                                                                                                  75. model/screenless/expiration_date
                                                                                                                                  76. -
                                                                                                                                  77. model/screenless/google_pay_environment
                                                                                                                                  78. -
                                                                                                                                  79. model/screenless/google_pay_payment
                                                                                                                                  80. -
                                                                                                                                  81. model/screenless/google_pay_utils_configuration
                                                                                                                                  82. -
                                                                                                                                  83. model/screenless/notifications
                                                                                                                                  84. -
                                                                                                                                  85. model/screenless/pay_po_payment
                                                                                                                                  86. -
                                                                                                                                  87. model/screenless/payment_details
                                                                                                                                  88. -
                                                                                                                                  89. model/screenless/raty_pekao_payment
                                                                                                                                  90. -
                                                                                                                                  91. model/screenless/recursive
                                                                                                                                  92. -
                                                                                                                                  93. model/screenless/redirects
                                                                                                                                  94. -
                                                                                                                                  95. model/screenless/screenless_payment
                                                                                                                                  96. -
                                                                                                                                  97. model/screenless/transfer_method
                                                                                                                                  98. -
                                                                                                                                  99. model/screenless/transfer_payment
                                                                                                                                  100. -
                                                                                                                                  101. model/tokenization/tokenization
                                                                                                                                  102. -
                                                                                                                                  103. model/tpay_configuration
                                                                                                                                  104. -
                                                                                                                                  105. model/tpay_environment
                                                                                                                                  106. -
                                                                                                                                  107. model/transaction/single_transaction
                                                                                                                                  108. -
                                                                                                                                  109. model/transaction/token_payment
                                                                                                                                  110. -
                                                                                                                                  111. model/transaction/transaction
                                                                                                                                  112. -
                                                                                                                                  113. model/wallet_configuration
                                                                                                                                  114. -
                                                                                                                                  115. tpay_button
                                                                                                                                  116. -
                                                                                                                                  117. tpay_method_channel
                                                                                                                                  118. -
                                                                                                                                  119. tpay_platform_interface
                                                                                                                                  120. -
                                                                                                                                  121. util/google_pay_configuration_util
                                                                                                                                  122. -
                                                                                                                                  123. util/google_pay_util
                                                                                                                                  124. -
                                                                                                                                  125. util/payment_channels_util
                                                                                                                                  126. -
                                                                                                                                  127. util/result_util
                                                                                                                                  128. -
                                                                                                                                  129. util/screenless_result_util
                                                                                                                                  130. +
                                                                                                                                  131. model/apple_pay_configuration
                                                                                                                                  132. +
                                                                                                                                  133. model/certificate_pinning_configuration
                                                                                                                                  134. +
                                                                                                                                  135. model/google_pay_configuration
                                                                                                                                  136. +
                                                                                                                                  137. model/language/language
                                                                                                                                  138. +
                                                                                                                                  139. model/language/languages
                                                                                                                                  140. +
                                                                                                                                  141. model/language/localized_string
                                                                                                                                  142. +
                                                                                                                                  143. model/merchant/merchant
                                                                                                                                  144. +
                                                                                                                                  145. model/merchant/merchant_authorization
                                                                                                                                  146. +
                                                                                                                                  147. model/merchant/merchant_details
                                                                                                                                  148. +
                                                                                                                                  149. model/payer/payer
                                                                                                                                  150. +
                                                                                                                                  151. model/payer/payer_address
                                                                                                                                  152. +
                                                                                                                                  153. model/payer/payer_context
                                                                                                                                  154. +
                                                                                                                                  155. model/paymentChannel/payment_channel
                                                                                                                                  156. +
                                                                                                                                  157. model/paymentChannel/payment_constraint
                                                                                                                                  158. +
                                                                                                                                  159. model/paymentChannel/payment_group
                                                                                                                                  160. +
                                                                                                                                  161. model/paymentMethod/automatic_payment_methods
                                                                                                                                  162. +
                                                                                                                                  163. model/paymentMethod/blik_alias
                                                                                                                                  164. +
                                                                                                                                  165. model/paymentMethod/credit_card_brand
                                                                                                                                  166. +
                                                                                                                                  167. model/paymentMethod/digital_wallet
                                                                                                                                  168. +
                                                                                                                                  169. model/paymentMethod/installment_payment
                                                                                                                                  170. +
                                                                                                                                  171. model/paymentMethod/payment_method
                                                                                                                                  172. +
                                                                                                                                  173. model/paymentMethod/payment_methods
                                                                                                                                  174. +
                                                                                                                                  175. model/paymentMethod/tokenized_card
                                                                                                                                  176. +
                                                                                                                                  177. model/result/google_pay_configure_result
                                                                                                                                  178. +
                                                                                                                                  179. model/result/google_pay_open_result
                                                                                                                                  180. +
                                                                                                                                  181. model/result/payment_channels_result
                                                                                                                                  182. +
                                                                                                                                  183. model/result/result
                                                                                                                                  184. +
                                                                                                                                  185. model/result/screenless_result
                                                                                                                                  186. +
                                                                                                                                  187. model/screenless/ambiguous_alias
                                                                                                                                  188. +
                                                                                                                                  189. model/screenless/ambiguous_blik_payment
                                                                                                                                  190. +
                                                                                                                                  191. model/screenless/apple_pay_payment
                                                                                                                                  192. +
                                                                                                                                  193. model/screenless/blik_payment
                                                                                                                                  194. +
                                                                                                                                  195. model/screenless/callbacks
                                                                                                                                  196. +
                                                                                                                                  197. model/screenless/credit_card
                                                                                                                                  198. +
                                                                                                                                  199. model/screenless/credit_card_config
                                                                                                                                  200. +
                                                                                                                                  201. model/screenless/credit_card_payment
                                                                                                                                  202. +
                                                                                                                                  203. model/screenless/expiration_date
                                                                                                                                  204. +
                                                                                                                                  205. model/screenless/google_pay_environment
                                                                                                                                  206. +
                                                                                                                                  207. model/screenless/google_pay_payment
                                                                                                                                  208. +
                                                                                                                                  209. model/screenless/google_pay_utils_configuration
                                                                                                                                  210. +
                                                                                                                                  211. model/screenless/notifications
                                                                                                                                  212. +
                                                                                                                                  213. model/screenless/pay_po_payment
                                                                                                                                  214. +
                                                                                                                                  215. model/screenless/payment_details
                                                                                                                                  216. +
                                                                                                                                  217. model/screenless/raty_pekao_payment
                                                                                                                                  218. +
                                                                                                                                  219. model/screenless/recursive
                                                                                                                                  220. +
                                                                                                                                  221. model/screenless/redirects
                                                                                                                                  222. +
                                                                                                                                  223. model/screenless/screenless_payment
                                                                                                                                  224. +
                                                                                                                                  225. model/screenless/transfer_method
                                                                                                                                  226. +
                                                                                                                                  227. model/screenless/transfer_payment
                                                                                                                                  228. +
                                                                                                                                  229. model/tokenization/tokenization
                                                                                                                                  230. +
                                                                                                                                  231. model/tpay_configuration
                                                                                                                                  232. +
                                                                                                                                  233. model/tpay_environment
                                                                                                                                  234. +
                                                                                                                                  235. model/transaction/single_transaction
                                                                                                                                  236. +
                                                                                                                                  237. model/transaction/token_payment
                                                                                                                                  238. +
                                                                                                                                  239. model/transaction/transaction
                                                                                                                                  240. +
                                                                                                                                  241. model/wallet_configuration
                                                                                                                                  242. +
                                                                                                                                  243. tpay_button
                                                                                                                                  244. +
                                                                                                                                  245. tpay_method_channel
                                                                                                                                  246. +
                                                                                                                                  247. tpay_platform_interface
                                                                                                                                  248. +
                                                                                                                                  249. util/google_pay_configuration_util
                                                                                                                                  250. +
                                                                                                                                  251. util/google_pay_util
                                                                                                                                  252. +
                                                                                                                                  253. util/payment_channels_util
                                                                                                                                  254. +
                                                                                                                                  255. util/result_util
                                                                                                                                  256. +
                                                                                                                                  257. util/screenless_result_util
                                                                                                                                  @@ -176,7 +173,7 @@
                                                                                                                                  transfer_payment library
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library-sidebar.html b/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library-sidebar.html index 6616baad..441dbea5 100644 --- a/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library-sidebar.html +++ b/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                    -
                                                                                                                                  1. Classes
                                                                                                                                  2. +
                                                                                                                                  3. Classes
                                                                                                                                  4. TransferPayment
                                                                                                                                  5. diff --git a/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library.html b/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library.html index 614e60ae..66aaf714 100644 --- a/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library.html +++ b/doc/model_screenless_transfer_payment/model_screenless_transfer_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                    New URL

                                                                                                                                    +

                                                                                                                                    New URL

                                                                                                                                    \ No newline at end of file diff --git a/doc/model_tokenization_tokenization/Tokenization-class-sidebar.html b/doc/model_tokenization_tokenization/Tokenization-class-sidebar.html index 08006f97..c1ce8a16 100644 --- a/doc/model_tokenization_tokenization/Tokenization-class-sidebar.html +++ b/doc/model_tokenization_tokenization/Tokenization-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                    1. Constructors
                                                                                                                                    2. -
                                                                                                                                    3. Tokenization
                                                                                                                                    4. +
                                                                                                                                    5. new
                                                                                                                                    6. fromJson
                                                                                                                                    7. diff --git a/doc/model_tokenization_tokenization/Tokenization-class.html b/doc/model_tokenization_tokenization/Tokenization-class.html index 90fbf19c..54d13f55 100644 --- a/doc/model_tokenization_tokenization/Tokenization-class.html +++ b/doc/model_tokenization_tokenization/Tokenization-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                      Tokenization
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Tokenization class
                                                                                                                                      Annotations
                                                                                                                                      @@ -91,7 +88,7 @@

                                                                                                                                      Tokenization class

                                                                                                                                      Constructors

                                                                                                                                      -
                                                                                                                                      +
                                                                                                                                      Tokenization({required Payer payer, required String notificationUrl})
                                                                                                                                      @@ -246,7 +243,7 @@

                                                                                                                                      Operators

                                                                                                                                      @@ -259,7 +256,7 @@
                                                                                                                                      tokenization library
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/Tokenization/Tokenization.fromJson.html b/doc/model_tokenization_tokenization/Tokenization/Tokenization.fromJson.html index 5bb374af..e33d00f0 100644 --- a/doc/model_tokenization_tokenization/Tokenization/Tokenization.fromJson.html +++ b/doc/model_tokenization_tokenization/Tokenization/Tokenization.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Implementation

                                                                                                                                      @@ -94,7 +91,7 @@
                                                                                                                                      Tokenization class
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/Tokenization/Tokenization.html b/doc/model_tokenization_tokenization/Tokenization/Tokenization.html index 4eba84cd..85016586 100644 --- a/doc/model_tokenization_tokenization/Tokenization/Tokenization.html +++ b/doc/model_tokenization_tokenization/Tokenization/Tokenization.html @@ -4,8 +4,8 @@ - - Tokenization constructor - Tokenization - tokenization library - Dart API + + Tokenization.new constructor - Tokenization - tokenization library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                      Tokenization
                                                                                                                                      +
                                                                                                                                      Tokenization.new
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Implementation
                                                                                                                                      Tokenization class
                                                                                                                                      @@ -95,7 +92,7 @@
                                                                                                                                      Tokenization class
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/Tokenization/notificationUrl.html b/doc/model_tokenization_tokenization/Tokenization/notificationUrl.html index 77673fb2..e775555c 100644 --- a/doc/model_tokenization_tokenization/Tokenization/notificationUrl.html +++ b/doc/model_tokenization_tokenization/Tokenization/notificationUrl.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Implementation @@ -97,7 +94,7 @@
                                                                                                                                      Tokenization class
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/Tokenization/payer.html b/doc/model_tokenization_tokenization/Tokenization/payer.html index d2a9484f..b165de77 100644 --- a/doc/model_tokenization_tokenization/Tokenization/payer.html +++ b/doc/model_tokenization_tokenization/Tokenization/payer.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Implementation @@ -97,7 +94,7 @@
                                                                                                                                      Tokenization class
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/Tokenization/toJson.html b/doc/model_tokenization_tokenization/Tokenization/toJson.html index d52001ca..8cab77fd 100644 --- a/doc/model_tokenization_tokenization/Tokenization/toJson.html +++ b/doc/model_tokenization_tokenization/Tokenization/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Implementation @@ -97,7 +94,7 @@
                                                                                                                                      Tokenization class
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/index.html b/doc/model_tokenization_tokenization/index.html index b6126c3f..e22c23e8 100644 --- a/doc/model_tokenization_tokenization/index.html +++ b/doc/model_tokenization_tokenization/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Classes
                                                                                                                                      flutter_tpay package
                                                                                                                                      1. Libraries
                                                                                                                                      2. -
                                                                                                                                      3. model/apple_pay_configuration
                                                                                                                                      4. -
                                                                                                                                      5. model/certificate_pinning_configuration
                                                                                                                                      6. -
                                                                                                                                      7. model/google_pay_configuration
                                                                                                                                      8. -
                                                                                                                                      9. model/language/language
                                                                                                                                      10. -
                                                                                                                                      11. model/language/languages
                                                                                                                                      12. -
                                                                                                                                      13. model/language/localized_string
                                                                                                                                      14. -
                                                                                                                                      15. model/merchant/merchant
                                                                                                                                      16. -
                                                                                                                                      17. model/merchant/merchant_authorization
                                                                                                                                      18. -
                                                                                                                                      19. model/merchant/merchant_details
                                                                                                                                      20. -
                                                                                                                                      21. model/payer/payer
                                                                                                                                      22. -
                                                                                                                                      23. model/payer/payer_address
                                                                                                                                      24. -
                                                                                                                                      25. model/payer/payer_context
                                                                                                                                      26. -
                                                                                                                                      27. model/paymentChannel/payment_channel
                                                                                                                                      28. -
                                                                                                                                      29. model/paymentChannel/payment_constraint
                                                                                                                                      30. -
                                                                                                                                      31. model/paymentChannel/payment_group
                                                                                                                                      32. -
                                                                                                                                      33. model/paymentMethod/automatic_payment_methods
                                                                                                                                      34. -
                                                                                                                                      35. model/paymentMethod/blik_alias
                                                                                                                                      36. -
                                                                                                                                      37. model/paymentMethod/credit_card_brand
                                                                                                                                      38. -
                                                                                                                                      39. model/paymentMethod/digital_wallet
                                                                                                                                      40. -
                                                                                                                                      41. model/paymentMethod/installment_payment
                                                                                                                                      42. -
                                                                                                                                      43. model/paymentMethod/payment_method
                                                                                                                                      44. -
                                                                                                                                      45. model/paymentMethod/payment_methods
                                                                                                                                      46. -
                                                                                                                                      47. model/paymentMethod/tokenized_card
                                                                                                                                      48. -
                                                                                                                                      49. model/result/google_pay_configure_result
                                                                                                                                      50. -
                                                                                                                                      51. model/result/google_pay_open_result
                                                                                                                                      52. -
                                                                                                                                      53. model/result/payment_channels_result
                                                                                                                                      54. -
                                                                                                                                      55. model/result/result
                                                                                                                                      56. -
                                                                                                                                      57. model/result/screenless_result
                                                                                                                                      58. -
                                                                                                                                      59. model/screenless/ambiguous_alias
                                                                                                                                      60. -
                                                                                                                                      61. model/screenless/ambiguous_blik_payment
                                                                                                                                      62. -
                                                                                                                                      63. model/screenless/apple_pay_payment
                                                                                                                                      64. -
                                                                                                                                      65. model/screenless/blik_payment
                                                                                                                                      66. -
                                                                                                                                      67. model/screenless/callbacks
                                                                                                                                      68. -
                                                                                                                                      69. model/screenless/credit_card
                                                                                                                                      70. -
                                                                                                                                      71. model/screenless/credit_card_config
                                                                                                                                      72. -
                                                                                                                                      73. model/screenless/credit_card_payment
                                                                                                                                      74. -
                                                                                                                                      75. model/screenless/expiration_date
                                                                                                                                      76. -
                                                                                                                                      77. model/screenless/google_pay_environment
                                                                                                                                      78. -
                                                                                                                                      79. model/screenless/google_pay_payment
                                                                                                                                      80. -
                                                                                                                                      81. model/screenless/google_pay_utils_configuration
                                                                                                                                      82. -
                                                                                                                                      83. model/screenless/notifications
                                                                                                                                      84. -
                                                                                                                                      85. model/screenless/pay_po_payment
                                                                                                                                      86. -
                                                                                                                                      87. model/screenless/payment_details
                                                                                                                                      88. -
                                                                                                                                      89. model/screenless/raty_pekao_payment
                                                                                                                                      90. -
                                                                                                                                      91. model/screenless/recursive
                                                                                                                                      92. -
                                                                                                                                      93. model/screenless/redirects
                                                                                                                                      94. -
                                                                                                                                      95. model/screenless/screenless_payment
                                                                                                                                      96. -
                                                                                                                                      97. model/screenless/transfer_method
                                                                                                                                      98. -
                                                                                                                                      99. model/screenless/transfer_payment
                                                                                                                                      100. -
                                                                                                                                      101. model/tokenization/tokenization
                                                                                                                                      102. -
                                                                                                                                      103. model/tpay_configuration
                                                                                                                                      104. -
                                                                                                                                      105. model/tpay_environment
                                                                                                                                      106. -
                                                                                                                                      107. model/transaction/single_transaction
                                                                                                                                      108. -
                                                                                                                                      109. model/transaction/token_payment
                                                                                                                                      110. -
                                                                                                                                      111. model/transaction/transaction
                                                                                                                                      112. -
                                                                                                                                      113. model/wallet_configuration
                                                                                                                                      114. -
                                                                                                                                      115. tpay_button
                                                                                                                                      116. -
                                                                                                                                      117. tpay_method_channel
                                                                                                                                      118. -
                                                                                                                                      119. tpay_platform_interface
                                                                                                                                      120. -
                                                                                                                                      121. util/google_pay_configuration_util
                                                                                                                                      122. -
                                                                                                                                      123. util/google_pay_util
                                                                                                                                      124. -
                                                                                                                                      125. util/payment_channels_util
                                                                                                                                      126. -
                                                                                                                                      127. util/result_util
                                                                                                                                      128. -
                                                                                                                                      129. util/screenless_result_util
                                                                                                                                      130. +
                                                                                                                                      131. model/apple_pay_configuration
                                                                                                                                      132. +
                                                                                                                                      133. model/certificate_pinning_configuration
                                                                                                                                      134. +
                                                                                                                                      135. model/google_pay_configuration
                                                                                                                                      136. +
                                                                                                                                      137. model/language/language
                                                                                                                                      138. +
                                                                                                                                      139. model/language/languages
                                                                                                                                      140. +
                                                                                                                                      141. model/language/localized_string
                                                                                                                                      142. +
                                                                                                                                      143. model/merchant/merchant
                                                                                                                                      144. +
                                                                                                                                      145. model/merchant/merchant_authorization
                                                                                                                                      146. +
                                                                                                                                      147. model/merchant/merchant_details
                                                                                                                                      148. +
                                                                                                                                      149. model/payer/payer
                                                                                                                                      150. +
                                                                                                                                      151. model/payer/payer_address
                                                                                                                                      152. +
                                                                                                                                      153. model/payer/payer_context
                                                                                                                                      154. +
                                                                                                                                      155. model/paymentChannel/payment_channel
                                                                                                                                      156. +
                                                                                                                                      157. model/paymentChannel/payment_constraint
                                                                                                                                      158. +
                                                                                                                                      159. model/paymentChannel/payment_group
                                                                                                                                      160. +
                                                                                                                                      161. model/paymentMethod/automatic_payment_methods
                                                                                                                                      162. +
                                                                                                                                      163. model/paymentMethod/blik_alias
                                                                                                                                      164. +
                                                                                                                                      165. model/paymentMethod/credit_card_brand
                                                                                                                                      166. +
                                                                                                                                      167. model/paymentMethod/digital_wallet
                                                                                                                                      168. +
                                                                                                                                      169. model/paymentMethod/installment_payment
                                                                                                                                      170. +
                                                                                                                                      171. model/paymentMethod/payment_method
                                                                                                                                      172. +
                                                                                                                                      173. model/paymentMethod/payment_methods
                                                                                                                                      174. +
                                                                                                                                      175. model/paymentMethod/tokenized_card
                                                                                                                                      176. +
                                                                                                                                      177. model/result/google_pay_configure_result
                                                                                                                                      178. +
                                                                                                                                      179. model/result/google_pay_open_result
                                                                                                                                      180. +
                                                                                                                                      181. model/result/payment_channels_result
                                                                                                                                      182. +
                                                                                                                                      183. model/result/result
                                                                                                                                      184. +
                                                                                                                                      185. model/result/screenless_result
                                                                                                                                      186. +
                                                                                                                                      187. model/screenless/ambiguous_alias
                                                                                                                                      188. +
                                                                                                                                      189. model/screenless/ambiguous_blik_payment
                                                                                                                                      190. +
                                                                                                                                      191. model/screenless/apple_pay_payment
                                                                                                                                      192. +
                                                                                                                                      193. model/screenless/blik_payment
                                                                                                                                      194. +
                                                                                                                                      195. model/screenless/callbacks
                                                                                                                                      196. +
                                                                                                                                      197. model/screenless/credit_card
                                                                                                                                      198. +
                                                                                                                                      199. model/screenless/credit_card_config
                                                                                                                                      200. +
                                                                                                                                      201. model/screenless/credit_card_payment
                                                                                                                                      202. +
                                                                                                                                      203. model/screenless/expiration_date
                                                                                                                                      204. +
                                                                                                                                      205. model/screenless/google_pay_environment
                                                                                                                                      206. +
                                                                                                                                      207. model/screenless/google_pay_payment
                                                                                                                                      208. +
                                                                                                                                      209. model/screenless/google_pay_utils_configuration
                                                                                                                                      210. +
                                                                                                                                      211. model/screenless/notifications
                                                                                                                                      212. +
                                                                                                                                      213. model/screenless/pay_po_payment
                                                                                                                                      214. +
                                                                                                                                      215. model/screenless/payment_details
                                                                                                                                      216. +
                                                                                                                                      217. model/screenless/raty_pekao_payment
                                                                                                                                      218. +
                                                                                                                                      219. model/screenless/recursive
                                                                                                                                      220. +
                                                                                                                                      221. model/screenless/redirects
                                                                                                                                      222. +
                                                                                                                                      223. model/screenless/screenless_payment
                                                                                                                                      224. +
                                                                                                                                      225. model/screenless/transfer_method
                                                                                                                                      226. +
                                                                                                                                      227. model/screenless/transfer_payment
                                                                                                                                      228. +
                                                                                                                                      229. model/tokenization/tokenization
                                                                                                                                      230. +
                                                                                                                                      231. model/tpay_configuration
                                                                                                                                      232. +
                                                                                                                                      233. model/tpay_environment
                                                                                                                                      234. +
                                                                                                                                      235. model/transaction/single_transaction
                                                                                                                                      236. +
                                                                                                                                      237. model/transaction/token_payment
                                                                                                                                      238. +
                                                                                                                                      239. model/transaction/transaction
                                                                                                                                      240. +
                                                                                                                                      241. model/wallet_configuration
                                                                                                                                      242. +
                                                                                                                                      243. tpay_button
                                                                                                                                      244. +
                                                                                                                                      245. tpay_method_channel
                                                                                                                                      246. +
                                                                                                                                      247. tpay_platform_interface
                                                                                                                                      248. +
                                                                                                                                      249. util/google_pay_configuration_util
                                                                                                                                      250. +
                                                                                                                                      251. util/google_pay_util
                                                                                                                                      252. +
                                                                                                                                      253. util/payment_channels_util
                                                                                                                                      254. +
                                                                                                                                      255. util/result_util
                                                                                                                                      256. +
                                                                                                                                      257. util/screenless_result_util
                                                                                                                                      @@ -177,7 +174,7 @@
                                                                                                                                      tokenization library
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_tokenization_tokenization/model_tokenization_tokenization-library-sidebar.html b/doc/model_tokenization_tokenization/model_tokenization_tokenization-library-sidebar.html index 3df5481f..10ef9ef3 100644 --- a/doc/model_tokenization_tokenization/model_tokenization_tokenization-library-sidebar.html +++ b/doc/model_tokenization_tokenization/model_tokenization_tokenization-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                        -
                                                                                                                                      1. Classes
                                                                                                                                      2. +
                                                                                                                                      3. Classes
                                                                                                                                      4. Tokenization
                                                                                                                                      5. diff --git a/doc/model_tokenization_tokenization/model_tokenization_tokenization-library.html b/doc/model_tokenization_tokenization/model_tokenization_tokenization-library.html index 186ea743..ffa82d7d 100644 --- a/doc/model_tokenization_tokenization/model_tokenization_tokenization-library.html +++ b/doc/model_tokenization_tokenization/model_tokenization_tokenization-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                        New URL

                                                                                                                                        +

                                                                                                                                        New URL

                                                                                                                                        \ No newline at end of file diff --git a/doc/model_tpay_configuration/TpayConfiguration-class-sidebar.html b/doc/model_tpay_configuration/TpayConfiguration-class-sidebar.html index 110794ba..341ea15c 100644 --- a/doc/model_tpay_configuration/TpayConfiguration-class-sidebar.html +++ b/doc/model_tpay_configuration/TpayConfiguration-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                        1. Constructors
                                                                                                                                        2. -
                                                                                                                                        3. TpayConfiguration
                                                                                                                                        4. +
                                                                                                                                        5. new
                                                                                                                                        6. fromJson
                                                                                                                                        7. diff --git a/doc/model_tpay_configuration/TpayConfiguration-class.html b/doc/model_tpay_configuration/TpayConfiguration-class.html index 7406310f..8911eaa6 100644 --- a/doc/model_tpay_configuration/TpayConfiguration-class.html +++ b/doc/model_tpay_configuration/TpayConfiguration-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                          TpayConfiguration
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          TpayConfiguration class
                                                                                                                                          Annotations
                                                                                                                                          @@ -92,7 +89,7 @@

                                                                                                                                          TpayConfiguration class

                                                                                                                                          Constructors

                                                                                                                                          -
                                                                                                                                          +
                                                                                                                                          TpayConfiguration({required Merchant merchant, required MerchantDetails merchantDetails, required Languages languages, required PaymentMethods paymentMethods})
                                                                                                                                          @@ -270,7 +267,7 @@

                                                                                                                                          Operators

                                                                                                                                          @@ -283,7 +280,7 @@
                                                                                                                                          tpay_configuration library
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.fromJson.html b/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.fromJson.html index 97483b8c..a1350c8b 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.fromJson.html +++ b/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation

                                                                                                                                          @@ -94,7 +91,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.html b/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.html index 97ace17c..46ecd791 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.html +++ b/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.html @@ -4,8 +4,8 @@ - - TpayConfiguration constructor - TpayConfiguration - tpay_configuration library - Dart API + + TpayConfiguration.new constructor - TpayConfiguration - tpay_configuration library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                          TpayConfiguration
                                                                                                                                          +
                                                                                                                                          TpayConfiguration.new
                                                                                                                                          -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation
                                                                                                                                          TpayConfiguration class
                                                                                                                                          @@ -102,7 +99,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/languages.html b/doc/model_tpay_configuration/TpayConfiguration/languages.html index 0deb5400..62a7aa88 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/languages.html +++ b/doc/model_tpay_configuration/TpayConfiguration/languages.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/merchant.html b/doc/model_tpay_configuration/TpayConfiguration/merchant.html index 14aa0af3..7bb93584 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/merchant.html +++ b/doc/model_tpay_configuration/TpayConfiguration/merchant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/merchantDetails.html b/doc/model_tpay_configuration/TpayConfiguration/merchantDetails.html index f26f317e..6f080436 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/merchantDetails.html +++ b/doc/model_tpay_configuration/TpayConfiguration/merchantDetails.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/paymentMethods.html b/doc/model_tpay_configuration/TpayConfiguration/paymentMethods.html index 70ffd900..d96a1859 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/paymentMethods.html +++ b/doc/model_tpay_configuration/TpayConfiguration/paymentMethods.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/TpayConfiguration/toJson.html b/doc/model_tpay_configuration/TpayConfiguration/toJson.html index 5d9f0bcc..42a69601 100644 --- a/doc/model_tpay_configuration/TpayConfiguration/toJson.html +++ b/doc/model_tpay_configuration/TpayConfiguration/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Implementation @@ -97,7 +94,7 @@
                                                                                                                                          TpayConfiguration class
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/index.html b/doc/model_tpay_configuration/index.html index 0b0f9a4a..cc254b3a 100644 --- a/doc/model_tpay_configuration/index.html +++ b/doc/model_tpay_configuration/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                          - -
                                                                                                                                          +
                                                                                                                                          Classes
                                                                                                                                          flutter_tpay package
                                                                                                                                          1. Libraries
                                                                                                                                          2. -
                                                                                                                                          3. model/apple_pay_configuration
                                                                                                                                          4. -
                                                                                                                                          5. model/certificate_pinning_configuration
                                                                                                                                          6. -
                                                                                                                                          7. model/google_pay_configuration
                                                                                                                                          8. -
                                                                                                                                          9. model/language/language
                                                                                                                                          10. -
                                                                                                                                          11. model/language/languages
                                                                                                                                          12. -
                                                                                                                                          13. model/language/localized_string
                                                                                                                                          14. -
                                                                                                                                          15. model/merchant/merchant
                                                                                                                                          16. -
                                                                                                                                          17. model/merchant/merchant_authorization
                                                                                                                                          18. -
                                                                                                                                          19. model/merchant/merchant_details
                                                                                                                                          20. -
                                                                                                                                          21. model/payer/payer
                                                                                                                                          22. -
                                                                                                                                          23. model/payer/payer_address
                                                                                                                                          24. -
                                                                                                                                          25. model/payer/payer_context
                                                                                                                                          26. -
                                                                                                                                          27. model/paymentChannel/payment_channel
                                                                                                                                          28. -
                                                                                                                                          29. model/paymentChannel/payment_constraint
                                                                                                                                          30. -
                                                                                                                                          31. model/paymentChannel/payment_group
                                                                                                                                          32. -
                                                                                                                                          33. model/paymentMethod/automatic_payment_methods
                                                                                                                                          34. -
                                                                                                                                          35. model/paymentMethod/blik_alias
                                                                                                                                          36. -
                                                                                                                                          37. model/paymentMethod/credit_card_brand
                                                                                                                                          38. -
                                                                                                                                          39. model/paymentMethod/digital_wallet
                                                                                                                                          40. -
                                                                                                                                          41. model/paymentMethod/installment_payment
                                                                                                                                          42. -
                                                                                                                                          43. model/paymentMethod/payment_method
                                                                                                                                          44. -
                                                                                                                                          45. model/paymentMethod/payment_methods
                                                                                                                                          46. -
                                                                                                                                          47. model/paymentMethod/tokenized_card
                                                                                                                                          48. -
                                                                                                                                          49. model/result/google_pay_configure_result
                                                                                                                                          50. -
                                                                                                                                          51. model/result/google_pay_open_result
                                                                                                                                          52. -
                                                                                                                                          53. model/result/payment_channels_result
                                                                                                                                          54. -
                                                                                                                                          55. model/result/result
                                                                                                                                          56. -
                                                                                                                                          57. model/result/screenless_result
                                                                                                                                          58. -
                                                                                                                                          59. model/screenless/ambiguous_alias
                                                                                                                                          60. -
                                                                                                                                          61. model/screenless/ambiguous_blik_payment
                                                                                                                                          62. -
                                                                                                                                          63. model/screenless/apple_pay_payment
                                                                                                                                          64. -
                                                                                                                                          65. model/screenless/blik_payment
                                                                                                                                          66. -
                                                                                                                                          67. model/screenless/callbacks
                                                                                                                                          68. -
                                                                                                                                          69. model/screenless/credit_card
                                                                                                                                          70. -
                                                                                                                                          71. model/screenless/credit_card_config
                                                                                                                                          72. -
                                                                                                                                          73. model/screenless/credit_card_payment
                                                                                                                                          74. -
                                                                                                                                          75. model/screenless/expiration_date
                                                                                                                                          76. -
                                                                                                                                          77. model/screenless/google_pay_environment
                                                                                                                                          78. -
                                                                                                                                          79. model/screenless/google_pay_payment
                                                                                                                                          80. -
                                                                                                                                          81. model/screenless/google_pay_utils_configuration
                                                                                                                                          82. -
                                                                                                                                          83. model/screenless/notifications
                                                                                                                                          84. -
                                                                                                                                          85. model/screenless/pay_po_payment
                                                                                                                                          86. -
                                                                                                                                          87. model/screenless/payment_details
                                                                                                                                          88. -
                                                                                                                                          89. model/screenless/raty_pekao_payment
                                                                                                                                          90. -
                                                                                                                                          91. model/screenless/recursive
                                                                                                                                          92. -
                                                                                                                                          93. model/screenless/redirects
                                                                                                                                          94. -
                                                                                                                                          95. model/screenless/screenless_payment
                                                                                                                                          96. -
                                                                                                                                          97. model/screenless/transfer_method
                                                                                                                                          98. -
                                                                                                                                          99. model/screenless/transfer_payment
                                                                                                                                          100. -
                                                                                                                                          101. model/tokenization/tokenization
                                                                                                                                          102. -
                                                                                                                                          103. model/tpay_configuration
                                                                                                                                          104. -
                                                                                                                                          105. model/tpay_environment
                                                                                                                                          106. -
                                                                                                                                          107. model/transaction/single_transaction
                                                                                                                                          108. -
                                                                                                                                          109. model/transaction/token_payment
                                                                                                                                          110. -
                                                                                                                                          111. model/transaction/transaction
                                                                                                                                          112. -
                                                                                                                                          113. model/wallet_configuration
                                                                                                                                          114. -
                                                                                                                                          115. tpay_button
                                                                                                                                          116. -
                                                                                                                                          117. tpay_method_channel
                                                                                                                                          118. -
                                                                                                                                          119. tpay_platform_interface
                                                                                                                                          120. -
                                                                                                                                          121. util/google_pay_configuration_util
                                                                                                                                          122. -
                                                                                                                                          123. util/google_pay_util
                                                                                                                                          124. -
                                                                                                                                          125. util/payment_channels_util
                                                                                                                                          126. -
                                                                                                                                          127. util/result_util
                                                                                                                                          128. -
                                                                                                                                          129. util/screenless_result_util
                                                                                                                                          130. +
                                                                                                                                          131. model/apple_pay_configuration
                                                                                                                                          132. +
                                                                                                                                          133. model/certificate_pinning_configuration
                                                                                                                                          134. +
                                                                                                                                          135. model/google_pay_configuration
                                                                                                                                          136. +
                                                                                                                                          137. model/language/language
                                                                                                                                          138. +
                                                                                                                                          139. model/language/languages
                                                                                                                                          140. +
                                                                                                                                          141. model/language/localized_string
                                                                                                                                          142. +
                                                                                                                                          143. model/merchant/merchant
                                                                                                                                          144. +
                                                                                                                                          145. model/merchant/merchant_authorization
                                                                                                                                          146. +
                                                                                                                                          147. model/merchant/merchant_details
                                                                                                                                          148. +
                                                                                                                                          149. model/payer/payer
                                                                                                                                          150. +
                                                                                                                                          151. model/payer/payer_address
                                                                                                                                          152. +
                                                                                                                                          153. model/payer/payer_context
                                                                                                                                          154. +
                                                                                                                                          155. model/paymentChannel/payment_channel
                                                                                                                                          156. +
                                                                                                                                          157. model/paymentChannel/payment_constraint
                                                                                                                                          158. +
                                                                                                                                          159. model/paymentChannel/payment_group
                                                                                                                                          160. +
                                                                                                                                          161. model/paymentMethod/automatic_payment_methods
                                                                                                                                          162. +
                                                                                                                                          163. model/paymentMethod/blik_alias
                                                                                                                                          164. +
                                                                                                                                          165. model/paymentMethod/credit_card_brand
                                                                                                                                          166. +
                                                                                                                                          167. model/paymentMethod/digital_wallet
                                                                                                                                          168. +
                                                                                                                                          169. model/paymentMethod/installment_payment
                                                                                                                                          170. +
                                                                                                                                          171. model/paymentMethod/payment_method
                                                                                                                                          172. +
                                                                                                                                          173. model/paymentMethod/payment_methods
                                                                                                                                          174. +
                                                                                                                                          175. model/paymentMethod/tokenized_card
                                                                                                                                          176. +
                                                                                                                                          177. model/result/google_pay_configure_result
                                                                                                                                          178. +
                                                                                                                                          179. model/result/google_pay_open_result
                                                                                                                                          180. +
                                                                                                                                          181. model/result/payment_channels_result
                                                                                                                                          182. +
                                                                                                                                          183. model/result/result
                                                                                                                                          184. +
                                                                                                                                          185. model/result/screenless_result
                                                                                                                                          186. +
                                                                                                                                          187. model/screenless/ambiguous_alias
                                                                                                                                          188. +
                                                                                                                                          189. model/screenless/ambiguous_blik_payment
                                                                                                                                          190. +
                                                                                                                                          191. model/screenless/apple_pay_payment
                                                                                                                                          192. +
                                                                                                                                          193. model/screenless/blik_payment
                                                                                                                                          194. +
                                                                                                                                          195. model/screenless/callbacks
                                                                                                                                          196. +
                                                                                                                                          197. model/screenless/credit_card
                                                                                                                                          198. +
                                                                                                                                          199. model/screenless/credit_card_config
                                                                                                                                          200. +
                                                                                                                                          201. model/screenless/credit_card_payment
                                                                                                                                          202. +
                                                                                                                                          203. model/screenless/expiration_date
                                                                                                                                          204. +
                                                                                                                                          205. model/screenless/google_pay_environment
                                                                                                                                          206. +
                                                                                                                                          207. model/screenless/google_pay_payment
                                                                                                                                          208. +
                                                                                                                                          209. model/screenless/google_pay_utils_configuration
                                                                                                                                          210. +
                                                                                                                                          211. model/screenless/notifications
                                                                                                                                          212. +
                                                                                                                                          213. model/screenless/pay_po_payment
                                                                                                                                          214. +
                                                                                                                                          215. model/screenless/payment_details
                                                                                                                                          216. +
                                                                                                                                          217. model/screenless/raty_pekao_payment
                                                                                                                                          218. +
                                                                                                                                          219. model/screenless/recursive
                                                                                                                                          220. +
                                                                                                                                          221. model/screenless/redirects
                                                                                                                                          222. +
                                                                                                                                          223. model/screenless/screenless_payment
                                                                                                                                          224. +
                                                                                                                                          225. model/screenless/transfer_method
                                                                                                                                          226. +
                                                                                                                                          227. model/screenless/transfer_payment
                                                                                                                                          228. +
                                                                                                                                          229. model/tokenization/tokenization
                                                                                                                                          230. +
                                                                                                                                          231. model/tpay_configuration
                                                                                                                                          232. +
                                                                                                                                          233. model/tpay_environment
                                                                                                                                          234. +
                                                                                                                                          235. model/transaction/single_transaction
                                                                                                                                          236. +
                                                                                                                                          237. model/transaction/token_payment
                                                                                                                                          238. +
                                                                                                                                          239. model/transaction/transaction
                                                                                                                                          240. +
                                                                                                                                          241. model/wallet_configuration
                                                                                                                                          242. +
                                                                                                                                          243. tpay_button
                                                                                                                                          244. +
                                                                                                                                          245. tpay_method_channel
                                                                                                                                          246. +
                                                                                                                                          247. tpay_platform_interface
                                                                                                                                          248. +
                                                                                                                                          249. util/google_pay_configuration_util
                                                                                                                                          250. +
                                                                                                                                          251. util/google_pay_util
                                                                                                                                          252. +
                                                                                                                                          253. util/payment_channels_util
                                                                                                                                          254. +
                                                                                                                                          255. util/result_util
                                                                                                                                          256. +
                                                                                                                                          257. util/screenless_result_util
                                                                                                                                          @@ -176,7 +173,7 @@
                                                                                                                                          tpay_configuration library
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                          diff --git a/doc/model_tpay_configuration/model_tpay_configuration-library-sidebar.html b/doc/model_tpay_configuration/model_tpay_configuration-library-sidebar.html index a6cb3b9b..db5dad9e 100644 --- a/doc/model_tpay_configuration/model_tpay_configuration-library-sidebar.html +++ b/doc/model_tpay_configuration/model_tpay_configuration-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                            -
                                                                                                                                          1. Classes
                                                                                                                                          2. +
                                                                                                                                          3. Classes
                                                                                                                                          4. TpayConfiguration
                                                                                                                                          5. diff --git a/doc/model_tpay_configuration/model_tpay_configuration-library.html b/doc/model_tpay_configuration/model_tpay_configuration-library.html index 12700d9a..0b4471f3 100644 --- a/doc/model_tpay_configuration/model_tpay_configuration-library.html +++ b/doc/model_tpay_configuration/model_tpay_configuration-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                            New URL

                                                                                                                                            +

                                                                                                                                            New URL

                                                                                                                                            \ No newline at end of file diff --git a/doc/model_tpay_environment/TpayEnvironment.html b/doc/model_tpay_environment/TpayEnvironment.html index e7a883a2..c2cc278f 100644 --- a/doc/model_tpay_environment/TpayEnvironment.html +++ b/doc/model_tpay_environment/TpayEnvironment.html @@ -25,24 +25,21 @@ menu
                                                                                                                                            TpayEnvironment
                                                                                                                                            -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Constants @@ -281,7 +278,7 @@
                                                                                                                                            tpay_environment library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_tpay_environment/TpayEnvironment/values-constant.html b/doc/model_tpay_environment/TpayEnvironment/values-constant.html index 4bbdf1b4..64b068d1 100644 --- a/doc/model_tpay_environment/TpayEnvironment/values-constant.html +++ b/doc/model_tpay_environment/TpayEnvironment/values-constant.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            values constant @@ -96,7 +93,7 @@
                                                                                                                                            TpayEnvironment enum
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_tpay_environment/index.html b/doc/model_tpay_environment/index.html index d926d9fb..057a4d1a 100644 --- a/doc/model_tpay_environment/index.html +++ b/doc/model_tpay_environment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                            - -
                                                                                                                                            +
                                                                                                                                            Enums
                                                                                                                                            flutter_tpay package
                                                                                                                                            1. Libraries
                                                                                                                                            2. -
                                                                                                                                            3. model/apple_pay_configuration
                                                                                                                                            4. -
                                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                                            6. -
                                                                                                                                            7. model/google_pay_configuration
                                                                                                                                            8. -
                                                                                                                                            9. model/language/language
                                                                                                                                            10. -
                                                                                                                                            11. model/language/languages
                                                                                                                                            12. -
                                                                                                                                            13. model/language/localized_string
                                                                                                                                            14. -
                                                                                                                                            15. model/merchant/merchant
                                                                                                                                            16. -
                                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                                            18. -
                                                                                                                                            19. model/merchant/merchant_details
                                                                                                                                            20. -
                                                                                                                                            21. model/payer/payer
                                                                                                                                            22. -
                                                                                                                                            23. model/payer/payer_address
                                                                                                                                            24. -
                                                                                                                                            25. model/payer/payer_context
                                                                                                                                            26. -
                                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                                            28. -
                                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                                            30. -
                                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                                            32. -
                                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                                            34. -
                                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                                            36. -
                                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                                            38. -
                                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                                            40. -
                                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                                            42. -
                                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                                            44. -
                                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                                            46. -
                                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                                            48. -
                                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                                            50. -
                                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                                            52. -
                                                                                                                                            53. model/result/payment_channels_result
                                                                                                                                            54. -
                                                                                                                                            55. model/result/result
                                                                                                                                            56. -
                                                                                                                                            57. model/result/screenless_result
                                                                                                                                            58. -
                                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                                            60. -
                                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                                            62. -
                                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                                            64. -
                                                                                                                                            65. model/screenless/blik_payment
                                                                                                                                            66. -
                                                                                                                                            67. model/screenless/callbacks
                                                                                                                                            68. -
                                                                                                                                            69. model/screenless/credit_card
                                                                                                                                            70. -
                                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                                            72. -
                                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                                            74. -
                                                                                                                                            75. model/screenless/expiration_date
                                                                                                                                            76. -
                                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                                            78. -
                                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                                            80. -
                                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                                            82. -
                                                                                                                                            83. model/screenless/notifications
                                                                                                                                            84. -
                                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                                            86. -
                                                                                                                                            87. model/screenless/payment_details
                                                                                                                                            88. -
                                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                                            90. -
                                                                                                                                            91. model/screenless/recursive
                                                                                                                                            92. -
                                                                                                                                            93. model/screenless/redirects
                                                                                                                                            94. -
                                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                                            96. -
                                                                                                                                            97. model/screenless/transfer_method
                                                                                                                                            98. -
                                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                                            100. -
                                                                                                                                            101. model/tokenization/tokenization
                                                                                                                                            102. -
                                                                                                                                            103. model/tpay_configuration
                                                                                                                                            104. -
                                                                                                                                            105. model/tpay_environment
                                                                                                                                            106. -
                                                                                                                                            107. model/transaction/single_transaction
                                                                                                                                            108. -
                                                                                                                                            109. model/transaction/token_payment
                                                                                                                                            110. -
                                                                                                                                            111. model/transaction/transaction
                                                                                                                                            112. -
                                                                                                                                            113. model/wallet_configuration
                                                                                                                                            114. -
                                                                                                                                            115. tpay_button
                                                                                                                                            116. -
                                                                                                                                            117. tpay_method_channel
                                                                                                                                            118. -
                                                                                                                                            119. tpay_platform_interface
                                                                                                                                            120. -
                                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                                            122. -
                                                                                                                                            123. util/google_pay_util
                                                                                                                                            124. -
                                                                                                                                            125. util/payment_channels_util
                                                                                                                                            126. -
                                                                                                                                            127. util/result_util
                                                                                                                                            128. -
                                                                                                                                            129. util/screenless_result_util
                                                                                                                                            130. +
                                                                                                                                            131. model/apple_pay_configuration
                                                                                                                                            132. +
                                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                                            134. +
                                                                                                                                            135. model/google_pay_configuration
                                                                                                                                            136. +
                                                                                                                                            137. model/language/language
                                                                                                                                            138. +
                                                                                                                                            139. model/language/languages
                                                                                                                                            140. +
                                                                                                                                            141. model/language/localized_string
                                                                                                                                            142. +
                                                                                                                                            143. model/merchant/merchant
                                                                                                                                            144. +
                                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                                            146. +
                                                                                                                                            147. model/merchant/merchant_details
                                                                                                                                            148. +
                                                                                                                                            149. model/payer/payer
                                                                                                                                            150. +
                                                                                                                                            151. model/payer/payer_address
                                                                                                                                            152. +
                                                                                                                                            153. model/payer/payer_context
                                                                                                                                            154. +
                                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                                            156. +
                                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                                            158. +
                                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                                            160. +
                                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                                            162. +
                                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                                            164. +
                                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                                            166. +
                                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                                            168. +
                                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                                            170. +
                                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                                            172. +
                                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                                            174. +
                                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                                            176. +
                                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                                            178. +
                                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                                            180. +
                                                                                                                                            181. model/result/payment_channels_result
                                                                                                                                            182. +
                                                                                                                                            183. model/result/result
                                                                                                                                            184. +
                                                                                                                                            185. model/result/screenless_result
                                                                                                                                            186. +
                                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                                            188. +
                                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                                            190. +
                                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                                            192. +
                                                                                                                                            193. model/screenless/blik_payment
                                                                                                                                            194. +
                                                                                                                                            195. model/screenless/callbacks
                                                                                                                                            196. +
                                                                                                                                            197. model/screenless/credit_card
                                                                                                                                            198. +
                                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                                            200. +
                                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                                            202. +
                                                                                                                                            203. model/screenless/expiration_date
                                                                                                                                            204. +
                                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                                            206. +
                                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                                            208. +
                                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                                            210. +
                                                                                                                                            211. model/screenless/notifications
                                                                                                                                            212. +
                                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                                            214. +
                                                                                                                                            215. model/screenless/payment_details
                                                                                                                                            216. +
                                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                                            218. +
                                                                                                                                            219. model/screenless/recursive
                                                                                                                                            220. +
                                                                                                                                            221. model/screenless/redirects
                                                                                                                                            222. +
                                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                                            224. +
                                                                                                                                            225. model/screenless/transfer_method
                                                                                                                                            226. +
                                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                                            228. +
                                                                                                                                            229. model/tokenization/tokenization
                                                                                                                                            230. +
                                                                                                                                            231. model/tpay_configuration
                                                                                                                                            232. +
                                                                                                                                            233. model/tpay_environment
                                                                                                                                            234. +
                                                                                                                                            235. model/transaction/single_transaction
                                                                                                                                            236. +
                                                                                                                                            237. model/transaction/token_payment
                                                                                                                                            238. +
                                                                                                                                            239. model/transaction/transaction
                                                                                                                                            240. +
                                                                                                                                            241. model/wallet_configuration
                                                                                                                                            242. +
                                                                                                                                            243. tpay_button
                                                                                                                                            244. +
                                                                                                                                            245. tpay_method_channel
                                                                                                                                            246. +
                                                                                                                                            247. tpay_platform_interface
                                                                                                                                            248. +
                                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                                            250. +
                                                                                                                                            251. util/google_pay_util
                                                                                                                                            252. +
                                                                                                                                            253. util/payment_channels_util
                                                                                                                                            254. +
                                                                                                                                            255. util/result_util
                                                                                                                                            256. +
                                                                                                                                            257. util/screenless_result_util
                                                                                                                                            @@ -176,7 +173,7 @@
                                                                                                                                            tpay_environment library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                            diff --git a/doc/model_tpay_environment/model_tpay_environment-library-sidebar.html b/doc/model_tpay_environment/model_tpay_environment-library-sidebar.html index fb10ddae..a7735bb3 100644 --- a/doc/model_tpay_environment/model_tpay_environment-library-sidebar.html +++ b/doc/model_tpay_environment/model_tpay_environment-library-sidebar.html @@ -1,6 +1,6 @@
                                                                                                                                              -
                                                                                                                                            1. Enums
                                                                                                                                            2. +
                                                                                                                                            3. Enums
                                                                                                                                            4. TpayEnvironment
                                                                                                                                            5. diff --git a/doc/model_tpay_environment/model_tpay_environment-library.html b/doc/model_tpay_environment/model_tpay_environment-library.html index 85f834c9..e36e3cce 100644 --- a/doc/model_tpay_environment/model_tpay_environment-library.html +++ b/doc/model_tpay_environment/model_tpay_environment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                              New URL

                                                                                                                                              +

                                                                                                                                              New URL

                                                                                                                                              \ No newline at end of file diff --git a/doc/model_transaction_single_transaction/SingleTransaction-class-sidebar.html b/doc/model_transaction_single_transaction/SingleTransaction-class-sidebar.html index 2803745f..bcf83a91 100644 --- a/doc/model_transaction_single_transaction/SingleTransaction-class-sidebar.html +++ b/doc/model_transaction_single_transaction/SingleTransaction-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                              1. Constructors
                                                                                                                                              2. -
                                                                                                                                              3. SingleTransaction
                                                                                                                                              4. +
                                                                                                                                              5. new
                                                                                                                                              6. fromJson
                                                                                                                                              7. @@ -22,6 +22,10 @@ hashCode +
                                                                                                                                              8. + hiddenDescription +
                                                                                                                                              9. +
                                                                                                                                              10. notifications
                                                                                                                                              11. diff --git a/doc/model_transaction_single_transaction/SingleTransaction-class.html b/doc/model_transaction_single_transaction/SingleTransaction-class.html index 4997df53..c7353dd7 100644 --- a/doc/model_transaction_single_transaction/SingleTransaction-class.html +++ b/doc/model_transaction_single_transaction/SingleTransaction-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                                SingleTransaction
                                                                                                                                                -
                                                                                                                                                - -
                                                                                                                                                +
                                                                                                                                                SingleTransaction class
                                                                                                                                              12. amount - amount of money payer has to pay
                                                                                                                                              13. description - description of payment shown to payer
                                                                                                                                              14. payerContext - information about payer and automatic payment methods
                                                                                                                                              15. +
                                                                                                                                              16. hiddenDescription - description of payment shown to merchant
                                                                                                                                              17. +
                                                                                                                                              18. notifications - information about notifications
                                                                                                                                @@ -87,7 +86,7 @@

                                                                                                                                SingleTransaction class
                                                                                                                                Annotations
                                                                                                                                @@ -99,8 +98,8 @@

                                                                                                                                SingleTransaction class

                                                                                                                                Constructors

                                                                                                                                -
                                                                                                                                - SingleTransaction({required double amount, required String description, required PayerContext payerContext, Notifications? notifications}) +
                                                                                                                                + SingleTransaction({required double amount, required String description, required PayerContext payerContext, String? hiddenDescription, Notifications? notifications})
                                                                                                                                @@ -154,6 +153,18 @@

                                                                                                                                Properties

                                                                                                                                The hash code for this object.
                                                                                                                                no setterinherited
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                + hiddenDescription + String? + + +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                finalinherited
                                                                                                                                +
                                                                                                                                @@ -277,7 +288,7 @@

                                                                                                                                Operators

                                                                                                                                @@ -290,7 +301,7 @@
                                                                                                                                single_transaction library
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                diff --git a/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.fromJson.html b/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.fromJson.html index 459c867c..94dc923f 100644 --- a/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.fromJson.html +++ b/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                Implementation

                                                                                                                                @@ -94,7 +91,7 @@
                                                                                                                                SingleTransaction class
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                diff --git a/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.html b/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.html index c215e246..079414be 100644 --- a/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.html +++ b/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.html @@ -4,8 +4,8 @@ - - SingleTransaction constructor - SingleTransaction - single_transaction library - Dart API + + SingleTransaction.new constructor - SingleTransaction - single_transaction library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                SingleTransaction
                                                                                                                                +
                                                                                                                                SingleTransaction.new
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                SingleTransaction constructor SingleTransaction({
                                                                                                                                1. required double amount,
                                                                                                                                2. required String description,
                                                                                                                                3. required PayerContext payerContext,
                                                                                                                                4. +
                                                                                                                                5. String? hiddenDescription,
                                                                                                                                6. Notifications? notifications,
                                                                                                                                })
                                                                                                                              @@ -73,6 +71,7 @@

                                                                                                                              Implementation

                                                                                                                              required super.amount, required super.description, required this.payerContext, + super.hiddenDescription, super.notifications });
                                                                                                                            @@ -88,9 +87,9 @@

                                                                                                                            Implementation

                                                                                                                            SingleTransaction class
                                                                                                                            @@ -102,7 +101,7 @@
                                                                                                                            SingleTransaction class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_transaction_single_transaction/SingleTransaction/payerContext.html b/doc/model_transaction_single_transaction/SingleTransaction/payerContext.html index 64b92adb..a02a8e03 100644 --- a/doc/model_transaction_single_transaction/SingleTransaction/payerContext.html +++ b/doc/model_transaction_single_transaction/SingleTransaction/payerContext.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                            SingleTransaction class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_transaction_single_transaction/SingleTransaction/toJson.html b/doc/model_transaction_single_transaction/SingleTransaction/toJson.html index 778b2d49..9e59f485 100644 --- a/doc/model_transaction_single_transaction/SingleTransaction/toJson.html +++ b/doc/model_transaction_single_transaction/SingleTransaction/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                            SingleTransaction class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_transaction_single_transaction/index.html b/doc/model_transaction_single_transaction/index.html index 920bc3e6..73832877 100644 --- a/doc/model_transaction_single_transaction/index.html +++ b/doc/model_transaction_single_transaction/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Classes
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -176,7 +173,7 @@
                                                                                                                            single_transaction library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_transaction_single_transaction/model_transaction_single_transaction-library-sidebar.html b/doc/model_transaction_single_transaction/model_transaction_single_transaction-library-sidebar.html index 78a495b6..9c4c96d9 100644 --- a/doc/model_transaction_single_transaction/model_transaction_single_transaction-library-sidebar.html +++ b/doc/model_transaction_single_transaction/model_transaction_single_transaction-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                              -
                                                                                                                            1. Classes
                                                                                                                            2. +
                                                                                                                            3. Classes
                                                                                                                            4. SingleTransaction
                                                                                                                            5. diff --git a/doc/model_transaction_single_transaction/model_transaction_single_transaction-library.html b/doc/model_transaction_single_transaction/model_transaction_single_transaction-library.html index 26830b68..dfd58d0a 100644 --- a/doc/model_transaction_single_transaction/model_transaction_single_transaction-library.html +++ b/doc/model_transaction_single_transaction/model_transaction_single_transaction-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                              New URL

                                                                                                                              +

                                                                                                                              New URL

                                                                                                                              \ No newline at end of file diff --git a/doc/model_transaction_token_payment/TokenPayment-class-sidebar.html b/doc/model_transaction_token_payment/TokenPayment-class-sidebar.html index 3bb02808..25734f12 100644 --- a/doc/model_transaction_token_payment/TokenPayment-class-sidebar.html +++ b/doc/model_transaction_token_payment/TokenPayment-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                              1. Constructors
                                                                                                                              2. -
                                                                                                                              3. TokenPayment
                                                                                                                              4. +
                                                                                                                              5. new
                                                                                                                              6. fromJson
                                                                                                                              7. @@ -26,6 +26,10 @@ hashCode +
                                                                                                                              8. + hiddenDescription +
                                                                                                                              9. +
                                                                                                                              10. notifications
                                                                                                                              11. diff --git a/doc/model_transaction_token_payment/TokenPayment-class.html b/doc/model_transaction_token_payment/TokenPayment-class.html index a8bcacfe..5ecdcbf3 100644 --- a/doc/model_transaction_token_payment/TokenPayment-class.html +++ b/doc/model_transaction_token_payment/TokenPayment-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                TokenPayment
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                TokenPayment class
                                                                                                                                Annotations
                                                                                                                                @@ -100,8 +97,8 @@

                                                                                                                                TokenPayment class

                                                                                                                                Constructors

                                                                                                                                -
                                                                                                                                - TokenPayment({required double amount, required String description, required Payer payer, required String cardToken, Notifications? notifications}) +
                                                                                                                                + TokenPayment({required double amount, required String description, String? hiddenDescription, required Payer payer, required String cardToken, Notifications? notifications})
                                                                                                                                @@ -167,6 +164,18 @@

                                                                                                                                Properties

                                                                                                                                The hash code for this object.
                                                                                                                                no setterinherited
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                + hiddenDescription + String? + + +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                finalinherited
                                                                                                                                +
                                                                                                                                @@ -290,7 +299,7 @@

                                                                                                                                Operators

                                                                                                                                @@ -303,7 +312,7 @@
                                                                                                                                token_payment library
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                diff --git a/doc/model_transaction_token_payment/TokenPayment/TokenPayment.fromJson.html b/doc/model_transaction_token_payment/TokenPayment/TokenPayment.fromJson.html index 4f5312a0..8ad4114a 100644 --- a/doc/model_transaction_token_payment/TokenPayment/TokenPayment.fromJson.html +++ b/doc/model_transaction_token_payment/TokenPayment/TokenPayment.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                Implementation

                                                                                                                                @@ -94,7 +91,7 @@
                                                                                                                                TokenPayment class
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                diff --git a/doc/model_transaction_token_payment/TokenPayment/TokenPayment.html b/doc/model_transaction_token_payment/TokenPayment/TokenPayment.html index 07b833f0..ef53cd59 100644 --- a/doc/model_transaction_token_payment/TokenPayment/TokenPayment.html +++ b/doc/model_transaction_token_payment/TokenPayment/TokenPayment.html @@ -4,8 +4,8 @@ - - TokenPayment constructor - TokenPayment - token_payment library - Dart API + + TokenPayment.new constructor - TokenPayment - token_payment library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                TokenPayment
                                                                                                                                +
                                                                                                                                TokenPayment.new
                                                                                                                                -
                                                                                                                                - -
                                                                                                                                +
                                                                                                                                TokenPayment constructor TokenPayment({
                                                                                                                                1. required double amount,
                                                                                                                                2. required String description,
                                                                                                                                3. +
                                                                                                                                4. String? hiddenDescription,
                                                                                                                                5. required Payer payer,
                                                                                                                                6. required String cardToken,
                                                                                                                                7. Notifications? notifications,
                                                                                                                                8. @@ -73,6 +71,7 @@

                                                                                                                                  Implementation

                                                                                                                                  TokenPayment({
                                                                                                                                     required super.amount,
                                                                                                                                     required super.description,
                                                                                                                                  +  super.hiddenDescription,
                                                                                                                                     required this.payer,
                                                                                                                                     required this.cardToken,
                                                                                                                                     super.notifications
                                                                                                                                  @@ -90,9 +89,9 @@ 

                                                                                                                                  Implementation

                                                                                                                                  TokenPayment class
                                                                                                                                  @@ -104,7 +103,7 @@
                                                                                                                                  TokenPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_transaction_token_payment/TokenPayment/cardToken.html b/doc/model_transaction_token_payment/TokenPayment/cardToken.html index 73ed521d..f371671b 100644 --- a/doc/model_transaction_token_payment/TokenPayment/cardToken.html +++ b/doc/model_transaction_token_payment/TokenPayment/cardToken.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                  TokenPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_transaction_token_payment/TokenPayment/payer.html b/doc/model_transaction_token_payment/TokenPayment/payer.html index 4b47ef33..08eeeacd 100644 --- a/doc/model_transaction_token_payment/TokenPayment/payer.html +++ b/doc/model_transaction_token_payment/TokenPayment/payer.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                  TokenPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_transaction_token_payment/TokenPayment/toJson.html b/doc/model_transaction_token_payment/TokenPayment/toJson.html index 2732a45a..55949af7 100644 --- a/doc/model_transaction_token_payment/TokenPayment/toJson.html +++ b/doc/model_transaction_token_payment/TokenPayment/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Implementation @@ -97,7 +94,7 @@
                                                                                                                                  TokenPayment class
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_transaction_token_payment/index.html b/doc/model_transaction_token_payment/index.html index f121a940..fced904a 100644 --- a/doc/model_transaction_token_payment/index.html +++ b/doc/model_transaction_token_payment/index.html @@ -31,17 +31,14 @@ -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  Classes
                                                                                                                                  flutter_tpay package
                                                                                                                                  1. Libraries
                                                                                                                                  2. -
                                                                                                                                  3. model/apple_pay_configuration
                                                                                                                                  4. -
                                                                                                                                  5. model/certificate_pinning_configuration
                                                                                                                                  6. -
                                                                                                                                  7. model/google_pay_configuration
                                                                                                                                  8. -
                                                                                                                                  9. model/language/language
                                                                                                                                  10. -
                                                                                                                                  11. model/language/languages
                                                                                                                                  12. -
                                                                                                                                  13. model/language/localized_string
                                                                                                                                  14. -
                                                                                                                                  15. model/merchant/merchant
                                                                                                                                  16. -
                                                                                                                                  17. model/merchant/merchant_authorization
                                                                                                                                  18. -
                                                                                                                                  19. model/merchant/merchant_details
                                                                                                                                  20. -
                                                                                                                                  21. model/payer/payer
                                                                                                                                  22. -
                                                                                                                                  23. model/payer/payer_address
                                                                                                                                  24. -
                                                                                                                                  25. model/payer/payer_context
                                                                                                                                  26. -
                                                                                                                                  27. model/paymentChannel/payment_channel
                                                                                                                                  28. -
                                                                                                                                  29. model/paymentChannel/payment_constraint
                                                                                                                                  30. -
                                                                                                                                  31. model/paymentChannel/payment_group
                                                                                                                                  32. -
                                                                                                                                  33. model/paymentMethod/automatic_payment_methods
                                                                                                                                  34. -
                                                                                                                                  35. model/paymentMethod/blik_alias
                                                                                                                                  36. -
                                                                                                                                  37. model/paymentMethod/credit_card_brand
                                                                                                                                  38. -
                                                                                                                                  39. model/paymentMethod/digital_wallet
                                                                                                                                  40. -
                                                                                                                                  41. model/paymentMethod/installment_payment
                                                                                                                                  42. -
                                                                                                                                  43. model/paymentMethod/payment_method
                                                                                                                                  44. -
                                                                                                                                  45. model/paymentMethod/payment_methods
                                                                                                                                  46. -
                                                                                                                                  47. model/paymentMethod/tokenized_card
                                                                                                                                  48. -
                                                                                                                                  49. model/result/google_pay_configure_result
                                                                                                                                  50. -
                                                                                                                                  51. model/result/google_pay_open_result
                                                                                                                                  52. -
                                                                                                                                  53. model/result/payment_channels_result
                                                                                                                                  54. -
                                                                                                                                  55. model/result/result
                                                                                                                                  56. -
                                                                                                                                  57. model/result/screenless_result
                                                                                                                                  58. -
                                                                                                                                  59. model/screenless/ambiguous_alias
                                                                                                                                  60. -
                                                                                                                                  61. model/screenless/ambiguous_blik_payment
                                                                                                                                  62. -
                                                                                                                                  63. model/screenless/apple_pay_payment
                                                                                                                                  64. -
                                                                                                                                  65. model/screenless/blik_payment
                                                                                                                                  66. -
                                                                                                                                  67. model/screenless/callbacks
                                                                                                                                  68. -
                                                                                                                                  69. model/screenless/credit_card
                                                                                                                                  70. -
                                                                                                                                  71. model/screenless/credit_card_config
                                                                                                                                  72. -
                                                                                                                                  73. model/screenless/credit_card_payment
                                                                                                                                  74. -
                                                                                                                                  75. model/screenless/expiration_date
                                                                                                                                  76. -
                                                                                                                                  77. model/screenless/google_pay_environment
                                                                                                                                  78. -
                                                                                                                                  79. model/screenless/google_pay_payment
                                                                                                                                  80. -
                                                                                                                                  81. model/screenless/google_pay_utils_configuration
                                                                                                                                  82. -
                                                                                                                                  83. model/screenless/notifications
                                                                                                                                  84. -
                                                                                                                                  85. model/screenless/pay_po_payment
                                                                                                                                  86. -
                                                                                                                                  87. model/screenless/payment_details
                                                                                                                                  88. -
                                                                                                                                  89. model/screenless/raty_pekao_payment
                                                                                                                                  90. -
                                                                                                                                  91. model/screenless/recursive
                                                                                                                                  92. -
                                                                                                                                  93. model/screenless/redirects
                                                                                                                                  94. -
                                                                                                                                  95. model/screenless/screenless_payment
                                                                                                                                  96. -
                                                                                                                                  97. model/screenless/transfer_method
                                                                                                                                  98. -
                                                                                                                                  99. model/screenless/transfer_payment
                                                                                                                                  100. -
                                                                                                                                  101. model/tokenization/tokenization
                                                                                                                                  102. -
                                                                                                                                  103. model/tpay_configuration
                                                                                                                                  104. -
                                                                                                                                  105. model/tpay_environment
                                                                                                                                  106. -
                                                                                                                                  107. model/transaction/single_transaction
                                                                                                                                  108. -
                                                                                                                                  109. model/transaction/token_payment
                                                                                                                                  110. -
                                                                                                                                  111. model/transaction/transaction
                                                                                                                                  112. -
                                                                                                                                  113. model/wallet_configuration
                                                                                                                                  114. -
                                                                                                                                  115. tpay_button
                                                                                                                                  116. -
                                                                                                                                  117. tpay_method_channel
                                                                                                                                  118. -
                                                                                                                                  119. tpay_platform_interface
                                                                                                                                  120. -
                                                                                                                                  121. util/google_pay_configuration_util
                                                                                                                                  122. -
                                                                                                                                  123. util/google_pay_util
                                                                                                                                  124. -
                                                                                                                                  125. util/payment_channels_util
                                                                                                                                  126. -
                                                                                                                                  127. util/result_util
                                                                                                                                  128. -
                                                                                                                                  129. util/screenless_result_util
                                                                                                                                  130. +
                                                                                                                                  131. model/apple_pay_configuration
                                                                                                                                  132. +
                                                                                                                                  133. model/certificate_pinning_configuration
                                                                                                                                  134. +
                                                                                                                                  135. model/google_pay_configuration
                                                                                                                                  136. +
                                                                                                                                  137. model/language/language
                                                                                                                                  138. +
                                                                                                                                  139. model/language/languages
                                                                                                                                  140. +
                                                                                                                                  141. model/language/localized_string
                                                                                                                                  142. +
                                                                                                                                  143. model/merchant/merchant
                                                                                                                                  144. +
                                                                                                                                  145. model/merchant/merchant_authorization
                                                                                                                                  146. +
                                                                                                                                  147. model/merchant/merchant_details
                                                                                                                                  148. +
                                                                                                                                  149. model/payer/payer
                                                                                                                                  150. +
                                                                                                                                  151. model/payer/payer_address
                                                                                                                                  152. +
                                                                                                                                  153. model/payer/payer_context
                                                                                                                                  154. +
                                                                                                                                  155. model/paymentChannel/payment_channel
                                                                                                                                  156. +
                                                                                                                                  157. model/paymentChannel/payment_constraint
                                                                                                                                  158. +
                                                                                                                                  159. model/paymentChannel/payment_group
                                                                                                                                  160. +
                                                                                                                                  161. model/paymentMethod/automatic_payment_methods
                                                                                                                                  162. +
                                                                                                                                  163. model/paymentMethod/blik_alias
                                                                                                                                  164. +
                                                                                                                                  165. model/paymentMethod/credit_card_brand
                                                                                                                                  166. +
                                                                                                                                  167. model/paymentMethod/digital_wallet
                                                                                                                                  168. +
                                                                                                                                  169. model/paymentMethod/installment_payment
                                                                                                                                  170. +
                                                                                                                                  171. model/paymentMethod/payment_method
                                                                                                                                  172. +
                                                                                                                                  173. model/paymentMethod/payment_methods
                                                                                                                                  174. +
                                                                                                                                  175. model/paymentMethod/tokenized_card
                                                                                                                                  176. +
                                                                                                                                  177. model/result/google_pay_configure_result
                                                                                                                                  178. +
                                                                                                                                  179. model/result/google_pay_open_result
                                                                                                                                  180. +
                                                                                                                                  181. model/result/payment_channels_result
                                                                                                                                  182. +
                                                                                                                                  183. model/result/result
                                                                                                                                  184. +
                                                                                                                                  185. model/result/screenless_result
                                                                                                                                  186. +
                                                                                                                                  187. model/screenless/ambiguous_alias
                                                                                                                                  188. +
                                                                                                                                  189. model/screenless/ambiguous_blik_payment
                                                                                                                                  190. +
                                                                                                                                  191. model/screenless/apple_pay_payment
                                                                                                                                  192. +
                                                                                                                                  193. model/screenless/blik_payment
                                                                                                                                  194. +
                                                                                                                                  195. model/screenless/callbacks
                                                                                                                                  196. +
                                                                                                                                  197. model/screenless/credit_card
                                                                                                                                  198. +
                                                                                                                                  199. model/screenless/credit_card_config
                                                                                                                                  200. +
                                                                                                                                  201. model/screenless/credit_card_payment
                                                                                                                                  202. +
                                                                                                                                  203. model/screenless/expiration_date
                                                                                                                                  204. +
                                                                                                                                  205. model/screenless/google_pay_environment
                                                                                                                                  206. +
                                                                                                                                  207. model/screenless/google_pay_payment
                                                                                                                                  208. +
                                                                                                                                  209. model/screenless/google_pay_utils_configuration
                                                                                                                                  210. +
                                                                                                                                  211. model/screenless/notifications
                                                                                                                                  212. +
                                                                                                                                  213. model/screenless/pay_po_payment
                                                                                                                                  214. +
                                                                                                                                  215. model/screenless/payment_details
                                                                                                                                  216. +
                                                                                                                                  217. model/screenless/raty_pekao_payment
                                                                                                                                  218. +
                                                                                                                                  219. model/screenless/recursive
                                                                                                                                  220. +
                                                                                                                                  221. model/screenless/redirects
                                                                                                                                  222. +
                                                                                                                                  223. model/screenless/screenless_payment
                                                                                                                                  224. +
                                                                                                                                  225. model/screenless/transfer_method
                                                                                                                                  226. +
                                                                                                                                  227. model/screenless/transfer_payment
                                                                                                                                  228. +
                                                                                                                                  229. model/tokenization/tokenization
                                                                                                                                  230. +
                                                                                                                                  231. model/tpay_configuration
                                                                                                                                  232. +
                                                                                                                                  233. model/tpay_environment
                                                                                                                                  234. +
                                                                                                                                  235. model/transaction/single_transaction
                                                                                                                                  236. +
                                                                                                                                  237. model/transaction/token_payment
                                                                                                                                  238. +
                                                                                                                                  239. model/transaction/transaction
                                                                                                                                  240. +
                                                                                                                                  241. model/wallet_configuration
                                                                                                                                  242. +
                                                                                                                                  243. tpay_button
                                                                                                                                  244. +
                                                                                                                                  245. tpay_method_channel
                                                                                                                                  246. +
                                                                                                                                  247. tpay_platform_interface
                                                                                                                                  248. +
                                                                                                                                  249. util/google_pay_configuration_util
                                                                                                                                  250. +
                                                                                                                                  251. util/google_pay_util
                                                                                                                                  252. +
                                                                                                                                  253. util/payment_channels_util
                                                                                                                                  254. +
                                                                                                                                  255. util/result_util
                                                                                                                                  256. +
                                                                                                                                  257. util/screenless_result_util
                                                                                                                                  @@ -177,7 +174,7 @@
                                                                                                                                  token_payment library
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                  diff --git a/doc/model_transaction_token_payment/model_transaction_token_payment-library-sidebar.html b/doc/model_transaction_token_payment/model_transaction_token_payment-library-sidebar.html index 48797d50..85a636d8 100644 --- a/doc/model_transaction_token_payment/model_transaction_token_payment-library-sidebar.html +++ b/doc/model_transaction_token_payment/model_transaction_token_payment-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                    -
                                                                                                                                  1. Classes
                                                                                                                                  2. +
                                                                                                                                  3. Classes
                                                                                                                                  4. TokenPayment
                                                                                                                                  5. diff --git a/doc/model_transaction_token_payment/model_transaction_token_payment-library.html b/doc/model_transaction_token_payment/model_transaction_token_payment-library.html index 97d474cc..3b8025b0 100644 --- a/doc/model_transaction_token_payment/model_transaction_token_payment-library.html +++ b/doc/model_transaction_token_payment/model_transaction_token_payment-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                    New URL

                                                                                                                                    +

                                                                                                                                    New URL

                                                                                                                                    \ No newline at end of file diff --git a/doc/model_transaction_transaction/Transaction-class-sidebar.html b/doc/model_transaction_transaction/Transaction-class-sidebar.html index 5b99fe49..540f32a3 100644 --- a/doc/model_transaction_transaction/Transaction-class-sidebar.html +++ b/doc/model_transaction_transaction/Transaction-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                                    1. Constructors
                                                                                                                                    2. -
                                                                                                                                    3. Transaction
                                                                                                                                    4. +
                                                                                                                                    5. new
                                                                                                                                    6. fromJson
                                                                                                                                    7. @@ -22,6 +22,10 @@ hashCode +
                                                                                                                                    8. + hiddenDescription +
                                                                                                                                    9. +
                                                                                                                                    10. notifications
                                                                                                                                    11. diff --git a/doc/model_transaction_transaction/Transaction-class.html b/doc/model_transaction_transaction/Transaction-class.html index 1e397e18..336754af 100644 --- a/doc/model_transaction_transaction/Transaction-class.html +++ b/doc/model_transaction_transaction/Transaction-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                      Transaction
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Transaction class
                                                                                                                                      Annotations
                                                                                                                                      @@ -92,8 +89,8 @@

                                                                                                                                      Transaction class

                                                                                                                                      Constructors

                                                                                                                                      -
                                                                                                                                      - Transaction({required double amount, required String description, Notifications? notifications}) +
                                                                                                                                      + Transaction({required double amount, required String description, String? hiddenDescription, Notifications? notifications})
                                                                                                                                      @@ -147,6 +144,18 @@

                                                                                                                                      Properties

                                                                                                                                      The hash code for this object.
                                                                                                                                      no setterinherited
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + hiddenDescription + String? + + +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      final
                                                                                                                                      +
                                                                                                                                      @@ -245,7 +254,7 @@

                                                                                                                                      Operators

                                                                                                                                      @@ -258,7 +267,7 @@
                                                                                                                                      transaction library
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_transaction_transaction/Transaction/Transaction.fromJson.html b/doc/model_transaction_transaction/Transaction/Transaction.fromJson.html index 41b4b4c4..fd0dc5e5 100644 --- a/doc/model_transaction_transaction/Transaction/Transaction.fromJson.html +++ b/doc/model_transaction_transaction/Transaction/Transaction.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Implementation

                                                                                                                                      @@ -94,7 +91,7 @@
                                                                                                                                      Transaction class
                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                                      diff --git a/doc/model_transaction_transaction/Transaction/Transaction.html b/doc/model_transaction_transaction/Transaction/Transaction.html index e22351b2..8fd4eda0 100644 --- a/doc/model_transaction_transaction/Transaction/Transaction.html +++ b/doc/model_transaction_transaction/Transaction/Transaction.html @@ -4,8 +4,8 @@ - - Transaction constructor - Transaction - transaction library - Dart API + + Transaction.new constructor - Transaction - transaction library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                                      Transaction
                                                                                                                                      +
                                                                                                                                      Transaction.new
                                                                                                                                      -
                                                                                                                                      - -
                                                                                                                                      +
                                                                                                                                      Transaction constructor Transaction({
                                                                                                                                      1. required double amount,
                                                                                                                                      2. required String description,
                                                                                                                                      3. +
                                                                                                                                      4. String? hiddenDescription,
                                                                                                                                      5. Notifications? notifications,
                                                                                                                                      })
                                                                                                                          @@ -71,6 +69,7 @@

                                                                                                                          Implementation

                                                                                                                          Transaction({
                                                                                                                             required this.amount,
                                                                                                                             required this.description,
                                                                                                                          +  this.hiddenDescription,
                                                                                                                             this.notifications
                                                                                                                           });
                                                                                                                        @@ -86,9 +85,9 @@

                                                                                                                        Implementation

                                                                                                                        Transaction class
                                                                                                                        @@ -100,7 +99,7 @@
                                                                                                                        Transaction class
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_transaction_transaction/Transaction/amount.html b/doc/model_transaction_transaction/Transaction/amount.html index 025d090a..cff2960e 100644 --- a/doc/model_transaction_transaction/Transaction/amount.html +++ b/doc/model_transaction_transaction/Transaction/amount.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                        Transaction class
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_transaction_transaction/Transaction/description.html b/doc/model_transaction_transaction/Transaction/description.html index 8a2ae222..7748eb8e 100644 --- a/doc/model_transaction_transaction/Transaction/description.html +++ b/doc/model_transaction_transaction/Transaction/description.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                        Transaction class
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_transaction_transaction/Transaction/hiddenDescription.html b/doc/model_transaction_transaction/Transaction/hiddenDescription.html new file mode 100644 index 00000000..abab44f0 --- /dev/null +++ b/doc/model_transaction_transaction/Transaction/hiddenDescription.html @@ -0,0 +1,108 @@ + + + + + + + + hiddenDescription property - Transaction class - transaction library - Dart API + + + + + + + + + + + + + + +
                                                                                                                        +
                                                                                                                        + menu + +
                                                                                                                        hiddenDescription
                                                                                                                        + + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        hiddenDescription property +

                                                                                                                        + + +
                                                                                                                        + + String? + hiddenDescription +
                                                                                                                        final
                                                                                                                        + +
                                                                                                                        + + + +
                                                                                                                        +

                                                                                                                        Implementation

                                                                                                                        +
                                                                                                                        final String? hiddenDescription;
                                                                                                                        +
                                                                                                                        + + + +
                                                                                                                        + + +
                                                                                                                        +
                                                                                                                        + + flutter_tpay + 1.2.8 + + +
                                                                                                                        + + + + + + + + diff --git a/doc/model_transaction_transaction/Transaction/notifications.html b/doc/model_transaction_transaction/Transaction/notifications.html index 937676d5..39f737f3 100644 --- a/doc/model_transaction_transaction/Transaction/notifications.html +++ b/doc/model_transaction_transaction/Transaction/notifications.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                        Transaction class
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_transaction_transaction/index.html b/doc/model_transaction_transaction/index.html index fba237ae..6a1bc047 100644 --- a/doc/model_transaction_transaction/index.html +++ b/doc/model_transaction_transaction/index.html @@ -31,17 +31,14 @@ -
                                                                                                                        - -
                                                                                                                        +
                                                                                                                        Classes
                                                                                                                        flutter_tpay package
                                                                                                                        1. Libraries
                                                                                                                        2. -
                                                                                                                        3. model/apple_pay_configuration
                                                                                                                        4. -
                                                                                                                        5. model/certificate_pinning_configuration
                                                                                                                        6. -
                                                                                                                        7. model/google_pay_configuration
                                                                                                                        8. -
                                                                                                                        9. model/language/language
                                                                                                                        10. -
                                                                                                                        11. model/language/languages
                                                                                                                        12. -
                                                                                                                        13. model/language/localized_string
                                                                                                                        14. -
                                                                                                                        15. model/merchant/merchant
                                                                                                                        16. -
                                                                                                                        17. model/merchant/merchant_authorization
                                                                                                                        18. -
                                                                                                                        19. model/merchant/merchant_details
                                                                                                                        20. -
                                                                                                                        21. model/payer/payer
                                                                                                                        22. -
                                                                                                                        23. model/payer/payer_address
                                                                                                                        24. -
                                                                                                                        25. model/payer/payer_context
                                                                                                                        26. -
                                                                                                                        27. model/paymentChannel/payment_channel
                                                                                                                        28. -
                                                                                                                        29. model/paymentChannel/payment_constraint
                                                                                                                        30. -
                                                                                                                        31. model/paymentChannel/payment_group
                                                                                                                        32. -
                                                                                                                        33. model/paymentMethod/automatic_payment_methods
                                                                                                                        34. -
                                                                                                                        35. model/paymentMethod/blik_alias
                                                                                                                        36. -
                                                                                                                        37. model/paymentMethod/credit_card_brand
                                                                                                                        38. -
                                                                                                                        39. model/paymentMethod/digital_wallet
                                                                                                                        40. -
                                                                                                                        41. model/paymentMethod/installment_payment
                                                                                                                        42. -
                                                                                                                        43. model/paymentMethod/payment_method
                                                                                                                        44. -
                                                                                                                        45. model/paymentMethod/payment_methods
                                                                                                                        46. -
                                                                                                                        47. model/paymentMethod/tokenized_card
                                                                                                                        48. -
                                                                                                                        49. model/result/google_pay_configure_result
                                                                                                                        50. -
                                                                                                                        51. model/result/google_pay_open_result
                                                                                                                        52. -
                                                                                                                        53. model/result/payment_channels_result
                                                                                                                        54. -
                                                                                                                        55. model/result/result
                                                                                                                        56. -
                                                                                                                        57. model/result/screenless_result
                                                                                                                        58. -
                                                                                                                        59. model/screenless/ambiguous_alias
                                                                                                                        60. -
                                                                                                                        61. model/screenless/ambiguous_blik_payment
                                                                                                                        62. -
                                                                                                                        63. model/screenless/apple_pay_payment
                                                                                                                        64. -
                                                                                                                        65. model/screenless/blik_payment
                                                                                                                        66. -
                                                                                                                        67. model/screenless/callbacks
                                                                                                                        68. -
                                                                                                                        69. model/screenless/credit_card
                                                                                                                        70. -
                                                                                                                        71. model/screenless/credit_card_config
                                                                                                                        72. -
                                                                                                                        73. model/screenless/credit_card_payment
                                                                                                                        74. -
                                                                                                                        75. model/screenless/expiration_date
                                                                                                                        76. -
                                                                                                                        77. model/screenless/google_pay_environment
                                                                                                                        78. -
                                                                                                                        79. model/screenless/google_pay_payment
                                                                                                                        80. -
                                                                                                                        81. model/screenless/google_pay_utils_configuration
                                                                                                                        82. -
                                                                                                                        83. model/screenless/notifications
                                                                                                                        84. -
                                                                                                                        85. model/screenless/pay_po_payment
                                                                                                                        86. -
                                                                                                                        87. model/screenless/payment_details
                                                                                                                        88. -
                                                                                                                        89. model/screenless/raty_pekao_payment
                                                                                                                        90. -
                                                                                                                        91. model/screenless/recursive
                                                                                                                        92. -
                                                                                                                        93. model/screenless/redirects
                                                                                                                        94. -
                                                                                                                        95. model/screenless/screenless_payment
                                                                                                                        96. -
                                                                                                                        97. model/screenless/transfer_method
                                                                                                                        98. -
                                                                                                                        99. model/screenless/transfer_payment
                                                                                                                        100. -
                                                                                                                        101. model/tokenization/tokenization
                                                                                                                        102. -
                                                                                                                        103. model/tpay_configuration
                                                                                                                        104. -
                                                                                                                        105. model/tpay_environment
                                                                                                                        106. -
                                                                                                                        107. model/transaction/single_transaction
                                                                                                                        108. -
                                                                                                                        109. model/transaction/token_payment
                                                                                                                        110. -
                                                                                                                        111. model/transaction/transaction
                                                                                                                        112. -
                                                                                                                        113. model/wallet_configuration
                                                                                                                        114. -
                                                                                                                        115. tpay_button
                                                                                                                        116. -
                                                                                                                        117. tpay_method_channel
                                                                                                                        118. -
                                                                                                                        119. tpay_platform_interface
                                                                                                                        120. -
                                                                                                                        121. util/google_pay_configuration_util
                                                                                                                        122. -
                                                                                                                        123. util/google_pay_util
                                                                                                                        124. -
                                                                                                                        125. util/payment_channels_util
                                                                                                                        126. -
                                                                                                                        127. util/result_util
                                                                                                                        128. -
                                                                                                                        129. util/screenless_result_util
                                                                                                                        130. +
                                                                                                                        131. model/apple_pay_configuration
                                                                                                                        132. +
                                                                                                                        133. model/certificate_pinning_configuration
                                                                                                                        134. +
                                                                                                                        135. model/google_pay_configuration
                                                                                                                        136. +
                                                                                                                        137. model/language/language
                                                                                                                        138. +
                                                                                                                        139. model/language/languages
                                                                                                                        140. +
                                                                                                                        141. model/language/localized_string
                                                                                                                        142. +
                                                                                                                        143. model/merchant/merchant
                                                                                                                        144. +
                                                                                                                        145. model/merchant/merchant_authorization
                                                                                                                        146. +
                                                                                                                        147. model/merchant/merchant_details
                                                                                                                        148. +
                                                                                                                        149. model/payer/payer
                                                                                                                        150. +
                                                                                                                        151. model/payer/payer_address
                                                                                                                        152. +
                                                                                                                        153. model/payer/payer_context
                                                                                                                        154. +
                                                                                                                        155. model/paymentChannel/payment_channel
                                                                                                                        156. +
                                                                                                                        157. model/paymentChannel/payment_constraint
                                                                                                                        158. +
                                                                                                                        159. model/paymentChannel/payment_group
                                                                                                                        160. +
                                                                                                                        161. model/paymentMethod/automatic_payment_methods
                                                                                                                        162. +
                                                                                                                        163. model/paymentMethod/blik_alias
                                                                                                                        164. +
                                                                                                                        165. model/paymentMethod/credit_card_brand
                                                                                                                        166. +
                                                                                                                        167. model/paymentMethod/digital_wallet
                                                                                                                        168. +
                                                                                                                        169. model/paymentMethod/installment_payment
                                                                                                                        170. +
                                                                                                                        171. model/paymentMethod/payment_method
                                                                                                                        172. +
                                                                                                                        173. model/paymentMethod/payment_methods
                                                                                                                        174. +
                                                                                                                        175. model/paymentMethod/tokenized_card
                                                                                                                        176. +
                                                                                                                        177. model/result/google_pay_configure_result
                                                                                                                        178. +
                                                                                                                        179. model/result/google_pay_open_result
                                                                                                                        180. +
                                                                                                                        181. model/result/payment_channels_result
                                                                                                                        182. +
                                                                                                                        183. model/result/result
                                                                                                                        184. +
                                                                                                                        185. model/result/screenless_result
                                                                                                                        186. +
                                                                                                                        187. model/screenless/ambiguous_alias
                                                                                                                        188. +
                                                                                                                        189. model/screenless/ambiguous_blik_payment
                                                                                                                        190. +
                                                                                                                        191. model/screenless/apple_pay_payment
                                                                                                                        192. +
                                                                                                                        193. model/screenless/blik_payment
                                                                                                                        194. +
                                                                                                                        195. model/screenless/callbacks
                                                                                                                        196. +
                                                                                                                        197. model/screenless/credit_card
                                                                                                                        198. +
                                                                                                                        199. model/screenless/credit_card_config
                                                                                                                        200. +
                                                                                                                        201. model/screenless/credit_card_payment
                                                                                                                        202. +
                                                                                                                        203. model/screenless/expiration_date
                                                                                                                        204. +
                                                                                                                        205. model/screenless/google_pay_environment
                                                                                                                        206. +
                                                                                                                        207. model/screenless/google_pay_payment
                                                                                                                        208. +
                                                                                                                        209. model/screenless/google_pay_utils_configuration
                                                                                                                        210. +
                                                                                                                        211. model/screenless/notifications
                                                                                                                        212. +
                                                                                                                        213. model/screenless/pay_po_payment
                                                                                                                        214. +
                                                                                                                        215. model/screenless/payment_details
                                                                                                                        216. +
                                                                                                                        217. model/screenless/raty_pekao_payment
                                                                                                                        218. +
                                                                                                                        219. model/screenless/recursive
                                                                                                                        220. +
                                                                                                                        221. model/screenless/redirects
                                                                                                                        222. +
                                                                                                                        223. model/screenless/screenless_payment
                                                                                                                        224. +
                                                                                                                        225. model/screenless/transfer_method
                                                                                                                        226. +
                                                                                                                        227. model/screenless/transfer_payment
                                                                                                                        228. +
                                                                                                                        229. model/tokenization/tokenization
                                                                                                                        230. +
                                                                                                                        231. model/tpay_configuration
                                                                                                                        232. +
                                                                                                                        233. model/tpay_environment
                                                                                                                        234. +
                                                                                                                        235. model/transaction/single_transaction
                                                                                                                        236. +
                                                                                                                        237. model/transaction/token_payment
                                                                                                                        238. +
                                                                                                                        239. model/transaction/transaction
                                                                                                                        240. +
                                                                                                                        241. model/wallet_configuration
                                                                                                                        242. +
                                                                                                                        243. tpay_button
                                                                                                                        244. +
                                                                                                                        245. tpay_method_channel
                                                                                                                        246. +
                                                                                                                        247. tpay_platform_interface
                                                                                                                        248. +
                                                                                                                        249. util/google_pay_configuration_util
                                                                                                                        250. +
                                                                                                                        251. util/google_pay_util
                                                                                                                        252. +
                                                                                                                        253. util/payment_channels_util
                                                                                                                        254. +
                                                                                                                        255. util/result_util
                                                                                                                        256. +
                                                                                                                        257. util/screenless_result_util
                                                                                                                        @@ -177,7 +174,7 @@
                                                                                                                        transaction library
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                        diff --git a/doc/model_transaction_transaction/model_transaction_transaction-library-sidebar.html b/doc/model_transaction_transaction/model_transaction_transaction-library-sidebar.html index 95b4c898..82dbf29b 100644 --- a/doc/model_transaction_transaction/model_transaction_transaction-library-sidebar.html +++ b/doc/model_transaction_transaction/model_transaction_transaction-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                          -
                                                                                                                        1. Classes
                                                                                                                        2. +
                                                                                                                        3. Classes
                                                                                                                        4. Transaction
                                                                                                                        5. diff --git a/doc/model_transaction_transaction/model_transaction_transaction-library.html b/doc/model_transaction_transaction/model_transaction_transaction-library.html index 02565267..92efbdd8 100644 --- a/doc/model_transaction_transaction/model_transaction_transaction-library.html +++ b/doc/model_transaction_transaction/model_transaction_transaction-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                          New URL

                                                                                                                          +

                                                                                                                          New URL

                                                                                                                          \ No newline at end of file diff --git a/doc/model_wallet_configuration/WalletConfiguration-class-sidebar.html b/doc/model_wallet_configuration/WalletConfiguration-class-sidebar.html index ea106085..81e2d60f 100644 --- a/doc/model_wallet_configuration/WalletConfiguration-class-sidebar.html +++ b/doc/model_wallet_configuration/WalletConfiguration-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                          1. Constructors
                                                                                                                          2. -
                                                                                                                          3. WalletConfiguration
                                                                                                                          4. +
                                                                                                                          5. new
                                                                                                                          6. fromJson
                                                                                                                          7. diff --git a/doc/model_wallet_configuration/WalletConfiguration-class.html b/doc/model_wallet_configuration/WalletConfiguration-class.html index 673d7693..c9a80add 100644 --- a/doc/model_wallet_configuration/WalletConfiguration-class.html +++ b/doc/model_wallet_configuration/WalletConfiguration-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                            WalletConfiguration
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            WalletConfiguration class
                                                                                                                            Annotations
                                                                                                                            @@ -86,7 +83,7 @@

                                                                                                                            WalletConfiguration class

                                                                                                                            Constructors

                                                                                                                            -
                                                                                                                            +
                                                                                                                            WalletConfiguration({required GooglePayConfiguration? googlePay, required ApplePayConfiguration? applePay})
                                                                                                                            @@ -240,7 +237,7 @@

                                                                                                                            Operators

                                                                                                                            @@ -253,7 +250,7 @@
                                                                                                                            wallet_configuration library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.fromJson.html b/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.fromJson.html index fa6c6ad8..70a7da2e 100644 --- a/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.fromJson.html +++ b/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.fromJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation

                                                                                                                            @@ -94,7 +91,7 @@
                                                                                                                            WalletConfiguration class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.html b/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.html index d5d0c97e..a443b19b 100644 --- a/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.html +++ b/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.html @@ -4,8 +4,8 @@ - - WalletConfiguration constructor - WalletConfiguration - wallet_configuration library - Dart API + + WalletConfiguration.new constructor - WalletConfiguration - wallet_configuration library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                            WalletConfiguration
                                                                                                                            +
                                                                                                                            WalletConfiguration.new
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation
                                                                                                                            WalletConfiguration class
                                                                                                                            @@ -95,7 +92,7 @@
                                                                                                                            WalletConfiguration class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/WalletConfiguration/applePay.html b/doc/model_wallet_configuration/WalletConfiguration/applePay.html index 204d4436..d927e095 100644 --- a/doc/model_wallet_configuration/WalletConfiguration/applePay.html +++ b/doc/model_wallet_configuration/WalletConfiguration/applePay.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                            WalletConfiguration class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/WalletConfiguration/googlePay.html b/doc/model_wallet_configuration/WalletConfiguration/googlePay.html index 36b211c6..70c6ddd1 100644 --- a/doc/model_wallet_configuration/WalletConfiguration/googlePay.html +++ b/doc/model_wallet_configuration/WalletConfiguration/googlePay.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                            WalletConfiguration class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/WalletConfiguration/toJson.html b/doc/model_wallet_configuration/WalletConfiguration/toJson.html index c4502ae1..34a9ee4d 100644 --- a/doc/model_wallet_configuration/WalletConfiguration/toJson.html +++ b/doc/model_wallet_configuration/WalletConfiguration/toJson.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -97,7 +94,7 @@
                                                                                                                            WalletConfiguration class
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/index.html b/doc/model_wallet_configuration/index.html index 46f8fcde..b91fdfa2 100644 --- a/doc/model_wallet_configuration/index.html +++ b/doc/model_wallet_configuration/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Classes
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -176,7 +173,7 @@
                                                                                                                            wallet_configuration library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/model_wallet_configuration/model_wallet_configuration-library-sidebar.html b/doc/model_wallet_configuration/model_wallet_configuration-library-sidebar.html index f9b824e2..33286f27 100644 --- a/doc/model_wallet_configuration/model_wallet_configuration-library-sidebar.html +++ b/doc/model_wallet_configuration/model_wallet_configuration-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                              -
                                                                                                                            1. Classes
                                                                                                                            2. +
                                                                                                                            3. Classes
                                                                                                                            4. WalletConfiguration
                                                                                                                            5. diff --git a/doc/model_wallet_configuration/model_wallet_configuration-library.html b/doc/model_wallet_configuration/model_wallet_configuration-library.html index f3cd1146..73468357 100644 --- a/doc/model_wallet_configuration/model_wallet_configuration-library.html +++ b/doc/model_wallet_configuration/model_wallet_configuration-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                              New URL

                                                                                                                              +

                                                                                                                              New URL

                                                                                                                              \ No newline at end of file diff --git a/doc/search.html b/doc/search.html index b27f712b..637df64b 100644 --- a/doc/search.html +++ b/doc/search.html @@ -31,17 +31,14 @@ -
                                                                                                                              - -
                                                                                                                              +
                                                                                                                              @@ -61,70 +58,70 @@
                                                                                                                              1. Libraries
                                                                                                                              2. -
                                                                                                                              3. model/apple_pay_configuration
                                                                                                                              4. -
                                                                                                                              5. model/certificate_pinning_configuration
                                                                                                                              6. -
                                                                                                                              7. model/google_pay_configuration
                                                                                                                              8. -
                                                                                                                              9. model/language/language
                                                                                                                              10. -
                                                                                                                              11. model/language/languages
                                                                                                                              12. -
                                                                                                                              13. model/language/localized_string
                                                                                                                              14. -
                                                                                                                              15. model/merchant/merchant
                                                                                                                              16. -
                                                                                                                              17. model/merchant/merchant_authorization
                                                                                                                              18. -
                                                                                                                              19. model/merchant/merchant_details
                                                                                                                              20. -
                                                                                                                              21. model/payer/payer
                                                                                                                              22. -
                                                                                                                              23. model/payer/payer_address
                                                                                                                              24. -
                                                                                                                              25. model/payer/payer_context
                                                                                                                              26. -
                                                                                                                              27. model/paymentChannel/payment_channel
                                                                                                                              28. -
                                                                                                                              29. model/paymentChannel/payment_constraint
                                                                                                                              30. -
                                                                                                                              31. model/paymentChannel/payment_group
                                                                                                                              32. -
                                                                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                                                                              34. -
                                                                                                                              35. model/paymentMethod/blik_alias
                                                                                                                              36. -
                                                                                                                              37. model/paymentMethod/credit_card_brand
                                                                                                                              38. -
                                                                                                                              39. model/paymentMethod/digital_wallet
                                                                                                                              40. -
                                                                                                                              41. model/paymentMethod/installment_payment
                                                                                                                              42. -
                                                                                                                              43. model/paymentMethod/payment_method
                                                                                                                              44. -
                                                                                                                              45. model/paymentMethod/payment_methods
                                                                                                                              46. -
                                                                                                                              47. model/paymentMethod/tokenized_card
                                                                                                                              48. -
                                                                                                                              49. model/result/google_pay_configure_result
                                                                                                                              50. -
                                                                                                                              51. model/result/google_pay_open_result
                                                                                                                              52. -
                                                                                                                              53. model/result/payment_channels_result
                                                                                                                              54. -
                                                                                                                              55. model/result/result
                                                                                                                              56. -
                                                                                                                              57. model/result/screenless_result
                                                                                                                              58. -
                                                                                                                              59. model/screenless/ambiguous_alias
                                                                                                                              60. -
                                                                                                                              61. model/screenless/ambiguous_blik_payment
                                                                                                                              62. -
                                                                                                                              63. model/screenless/apple_pay_payment
                                                                                                                              64. -
                                                                                                                              65. model/screenless/blik_payment
                                                                                                                              66. -
                                                                                                                              67. model/screenless/callbacks
                                                                                                                              68. -
                                                                                                                              69. model/screenless/credit_card
                                                                                                                              70. -
                                                                                                                              71. model/screenless/credit_card_config
                                                                                                                              72. -
                                                                                                                              73. model/screenless/credit_card_payment
                                                                                                                              74. -
                                                                                                                              75. model/screenless/expiration_date
                                                                                                                              76. -
                                                                                                                              77. model/screenless/google_pay_environment
                                                                                                                              78. -
                                                                                                                              79. model/screenless/google_pay_payment
                                                                                                                              80. -
                                                                                                                              81. model/screenless/google_pay_utils_configuration
                                                                                                                              82. -
                                                                                                                              83. model/screenless/notifications
                                                                                                                              84. -
                                                                                                                              85. model/screenless/pay_po_payment
                                                                                                                              86. -
                                                                                                                              87. model/screenless/payment_details
                                                                                                                              88. -
                                                                                                                              89. model/screenless/raty_pekao_payment
                                                                                                                              90. -
                                                                                                                              91. model/screenless/recursive
                                                                                                                              92. -
                                                                                                                              93. model/screenless/redirects
                                                                                                                              94. -
                                                                                                                              95. model/screenless/screenless_payment
                                                                                                                              96. -
                                                                                                                              97. model/screenless/transfer_method
                                                                                                                              98. -
                                                                                                                              99. model/screenless/transfer_payment
                                                                                                                              100. -
                                                                                                                              101. model/tokenization/tokenization
                                                                                                                              102. -
                                                                                                                              103. model/tpay_configuration
                                                                                                                              104. -
                                                                                                                              105. model/tpay_environment
                                                                                                                              106. -
                                                                                                                              107. model/transaction/single_transaction
                                                                                                                              108. -
                                                                                                                              109. model/transaction/token_payment
                                                                                                                              110. -
                                                                                                                              111. model/transaction/transaction
                                                                                                                              112. -
                                                                                                                              113. model/wallet_configuration
                                                                                                                              114. -
                                                                                                                              115. tpay_button
                                                                                                                              116. -
                                                                                                                              117. tpay_method_channel
                                                                                                                              118. -
                                                                                                                              119. tpay_platform_interface
                                                                                                                              120. -
                                                                                                                              121. util/google_pay_configuration_util
                                                                                                                              122. -
                                                                                                                              123. util/google_pay_util
                                                                                                                              124. -
                                                                                                                              125. util/payment_channels_util
                                                                                                                              126. -
                                                                                                                              127. util/result_util
                                                                                                                              128. -
                                                                                                                              129. util/screenless_result_util
                                                                                                                              130. +
                                                                                                                              131. model/apple_pay_configuration
                                                                                                                              132. +
                                                                                                                              133. model/certificate_pinning_configuration
                                                                                                                              134. +
                                                                                                                              135. model/google_pay_configuration
                                                                                                                              136. +
                                                                                                                              137. model/language/language
                                                                                                                              138. +
                                                                                                                              139. model/language/languages
                                                                                                                              140. +
                                                                                                                              141. model/language/localized_string
                                                                                                                              142. +
                                                                                                                              143. model/merchant/merchant
                                                                                                                              144. +
                                                                                                                              145. model/merchant/merchant_authorization
                                                                                                                              146. +
                                                                                                                              147. model/merchant/merchant_details
                                                                                                                              148. +
                                                                                                                              149. model/payer/payer
                                                                                                                              150. +
                                                                                                                              151. model/payer/payer_address
                                                                                                                              152. +
                                                                                                                              153. model/payer/payer_context
                                                                                                                              154. +
                                                                                                                              155. model/paymentChannel/payment_channel
                                                                                                                              156. +
                                                                                                                              157. model/paymentChannel/payment_constraint
                                                                                                                              158. +
                                                                                                                              159. model/paymentChannel/payment_group
                                                                                                                              160. +
                                                                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                                                                              162. +
                                                                                                                              163. model/paymentMethod/blik_alias
                                                                                                                              164. +
                                                                                                                              165. model/paymentMethod/credit_card_brand
                                                                                                                              166. +
                                                                                                                              167. model/paymentMethod/digital_wallet
                                                                                                                              168. +
                                                                                                                              169. model/paymentMethod/installment_payment
                                                                                                                              170. +
                                                                                                                              171. model/paymentMethod/payment_method
                                                                                                                              172. +
                                                                                                                              173. model/paymentMethod/payment_methods
                                                                                                                              174. +
                                                                                                                              175. model/paymentMethod/tokenized_card
                                                                                                                              176. +
                                                                                                                              177. model/result/google_pay_configure_result
                                                                                                                              178. +
                                                                                                                              179. model/result/google_pay_open_result
                                                                                                                              180. +
                                                                                                                              181. model/result/payment_channels_result
                                                                                                                              182. +
                                                                                                                              183. model/result/result
                                                                                                                              184. +
                                                                                                                              185. model/result/screenless_result
                                                                                                                              186. +
                                                                                                                              187. model/screenless/ambiguous_alias
                                                                                                                              188. +
                                                                                                                              189. model/screenless/ambiguous_blik_payment
                                                                                                                              190. +
                                                                                                                              191. model/screenless/apple_pay_payment
                                                                                                                              192. +
                                                                                                                              193. model/screenless/blik_payment
                                                                                                                              194. +
                                                                                                                              195. model/screenless/callbacks
                                                                                                                              196. +
                                                                                                                              197. model/screenless/credit_card
                                                                                                                              198. +
                                                                                                                              199. model/screenless/credit_card_config
                                                                                                                              200. +
                                                                                                                              201. model/screenless/credit_card_payment
                                                                                                                              202. +
                                                                                                                              203. model/screenless/expiration_date
                                                                                                                              204. +
                                                                                                                              205. model/screenless/google_pay_environment
                                                                                                                              206. +
                                                                                                                              207. model/screenless/google_pay_payment
                                                                                                                              208. +
                                                                                                                              209. model/screenless/google_pay_utils_configuration
                                                                                                                              210. +
                                                                                                                              211. model/screenless/notifications
                                                                                                                              212. +
                                                                                                                              213. model/screenless/pay_po_payment
                                                                                                                              214. +
                                                                                                                              215. model/screenless/payment_details
                                                                                                                              216. +
                                                                                                                              217. model/screenless/raty_pekao_payment
                                                                                                                              218. +
                                                                                                                              219. model/screenless/recursive
                                                                                                                              220. +
                                                                                                                              221. model/screenless/redirects
                                                                                                                              222. +
                                                                                                                              223. model/screenless/screenless_payment
                                                                                                                              224. +
                                                                                                                              225. model/screenless/transfer_method
                                                                                                                              226. +
                                                                                                                              227. model/screenless/transfer_payment
                                                                                                                              228. +
                                                                                                                              229. model/tokenization/tokenization
                                                                                                                              230. +
                                                                                                                              231. model/tpay_configuration
                                                                                                                              232. +
                                                                                                                              233. model/tpay_environment
                                                                                                                              234. +
                                                                                                                              235. model/transaction/single_transaction
                                                                                                                              236. +
                                                                                                                              237. model/transaction/token_payment
                                                                                                                              238. +
                                                                                                                              239. model/transaction/transaction
                                                                                                                              240. +
                                                                                                                              241. model/wallet_configuration
                                                                                                                              242. +
                                                                                                                              243. tpay_button
                                                                                                                              244. +
                                                                                                                              245. tpay_method_channel
                                                                                                                              246. +
                                                                                                                              247. tpay_platform_interface
                                                                                                                              248. +
                                                                                                                              249. util/google_pay_configuration_util
                                                                                                                              250. +
                                                                                                                              251. util/google_pay_util
                                                                                                                              252. +
                                                                                                                              253. util/payment_channels_util
                                                                                                                              254. +
                                                                                                                              255. util/result_util
                                                                                                                              256. +
                                                                                                                              257. util/screenless_result_util
                                                                                                                              @@ -134,7 +131,7 @@
                                                                                                                              TpayButton class
                                                                                                                              @@ -95,7 +92,7 @@
                                                                                                                              TpayButton class
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                              diff --git a/doc/tpay_button/TpayButton/createState.html b/doc/tpay_button/TpayButton/createState.html index 94490237..3daea933 100644 --- a/doc/tpay_button/TpayButton/createState.html +++ b/doc/tpay_button/TpayButton/createState.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                              - -
                                                                                                                              +
                                                                                                                              Implementation @@ -118,7 +115,7 @@
                                                                                                                              TpayButton class
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                              diff --git a/doc/tpay_button/TpayButton/onClick.html b/doc/tpay_button/TpayButton/onClick.html index 20a36293..8d62a29e 100644 --- a/doc/tpay_button/TpayButton/onClick.html +++ b/doc/tpay_button/TpayButton/onClick.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                              - -
                                                                                                                              +
                                                                                                                              Implementation @@ -97,7 +94,7 @@
                                                                                                                              TpayButton class
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                              diff --git a/doc/tpay_button/index.html b/doc/tpay_button/index.html index 6bd90373..4bd02d93 100644 --- a/doc/tpay_button/index.html +++ b/doc/tpay_button/index.html @@ -31,17 +31,14 @@ -
                                                                                                                              - -
                                                                                                                              +
                                                                                                                              Classes
                                                                                                                              flutter_tpay package
                                                                                                                              1. Libraries
                                                                                                                              2. -
                                                                                                                              3. model/apple_pay_configuration
                                                                                                                              4. -
                                                                                                                              5. model/certificate_pinning_configuration
                                                                                                                              6. -
                                                                                                                              7. model/google_pay_configuration
                                                                                                                              8. -
                                                                                                                              9. model/language/language
                                                                                                                              10. -
                                                                                                                              11. model/language/languages
                                                                                                                              12. -
                                                                                                                              13. model/language/localized_string
                                                                                                                              14. -
                                                                                                                              15. model/merchant/merchant
                                                                                                                              16. -
                                                                                                                              17. model/merchant/merchant_authorization
                                                                                                                              18. -
                                                                                                                              19. model/merchant/merchant_details
                                                                                                                              20. -
                                                                                                                              21. model/payer/payer
                                                                                                                              22. -
                                                                                                                              23. model/payer/payer_address
                                                                                                                              24. -
                                                                                                                              25. model/payer/payer_context
                                                                                                                              26. -
                                                                                                                              27. model/paymentChannel/payment_channel
                                                                                                                              28. -
                                                                                                                              29. model/paymentChannel/payment_constraint
                                                                                                                              30. -
                                                                                                                              31. model/paymentChannel/payment_group
                                                                                                                              32. -
                                                                                                                              33. model/paymentMethod/automatic_payment_methods
                                                                                                                              34. -
                                                                                                                              35. model/paymentMethod/blik_alias
                                                                                                                              36. -
                                                                                                                              37. model/paymentMethod/credit_card_brand
                                                                                                                              38. -
                                                                                                                              39. model/paymentMethod/digital_wallet
                                                                                                                              40. -
                                                                                                                              41. model/paymentMethod/installment_payment
                                                                                                                              42. -
                                                                                                                              43. model/paymentMethod/payment_method
                                                                                                                              44. -
                                                                                                                              45. model/paymentMethod/payment_methods
                                                                                                                              46. -
                                                                                                                              47. model/paymentMethod/tokenized_card
                                                                                                                              48. -
                                                                                                                              49. model/result/google_pay_configure_result
                                                                                                                              50. -
                                                                                                                              51. model/result/google_pay_open_result
                                                                                                                              52. -
                                                                                                                              53. model/result/payment_channels_result
                                                                                                                              54. -
                                                                                                                              55. model/result/result
                                                                                                                              56. -
                                                                                                                              57. model/result/screenless_result
                                                                                                                              58. -
                                                                                                                              59. model/screenless/ambiguous_alias
                                                                                                                              60. -
                                                                                                                              61. model/screenless/ambiguous_blik_payment
                                                                                                                              62. -
                                                                                                                              63. model/screenless/apple_pay_payment
                                                                                                                              64. -
                                                                                                                              65. model/screenless/blik_payment
                                                                                                                              66. -
                                                                                                                              67. model/screenless/callbacks
                                                                                                                              68. -
                                                                                                                              69. model/screenless/credit_card
                                                                                                                              70. -
                                                                                                                              71. model/screenless/credit_card_config
                                                                                                                              72. -
                                                                                                                              73. model/screenless/credit_card_payment
                                                                                                                              74. -
                                                                                                                              75. model/screenless/expiration_date
                                                                                                                              76. -
                                                                                                                              77. model/screenless/google_pay_environment
                                                                                                                              78. -
                                                                                                                              79. model/screenless/google_pay_payment
                                                                                                                              80. -
                                                                                                                              81. model/screenless/google_pay_utils_configuration
                                                                                                                              82. -
                                                                                                                              83. model/screenless/notifications
                                                                                                                              84. -
                                                                                                                              85. model/screenless/pay_po_payment
                                                                                                                              86. -
                                                                                                                              87. model/screenless/payment_details
                                                                                                                              88. -
                                                                                                                              89. model/screenless/raty_pekao_payment
                                                                                                                              90. -
                                                                                                                              91. model/screenless/recursive
                                                                                                                              92. -
                                                                                                                              93. model/screenless/redirects
                                                                                                                              94. -
                                                                                                                              95. model/screenless/screenless_payment
                                                                                                                              96. -
                                                                                                                              97. model/screenless/transfer_method
                                                                                                                              98. -
                                                                                                                              99. model/screenless/transfer_payment
                                                                                                                              100. -
                                                                                                                              101. model/tokenization/tokenization
                                                                                                                              102. -
                                                                                                                              103. model/tpay_configuration
                                                                                                                              104. -
                                                                                                                              105. model/tpay_environment
                                                                                                                              106. -
                                                                                                                              107. model/transaction/single_transaction
                                                                                                                              108. -
                                                                                                                              109. model/transaction/token_payment
                                                                                                                              110. -
                                                                                                                              111. model/transaction/transaction
                                                                                                                              112. -
                                                                                                                              113. model/wallet_configuration
                                                                                                                              114. -
                                                                                                                              115. tpay_button
                                                                                                                              116. -
                                                                                                                              117. tpay_method_channel
                                                                                                                              118. -
                                                                                                                              119. tpay_platform_interface
                                                                                                                              120. -
                                                                                                                              121. util/google_pay_configuration_util
                                                                                                                              122. -
                                                                                                                              123. util/google_pay_util
                                                                                                                              124. -
                                                                                                                              125. util/payment_channels_util
                                                                                                                              126. -
                                                                                                                              127. util/result_util
                                                                                                                              128. -
                                                                                                                              129. util/screenless_result_util
                                                                                                                              130. +
                                                                                                                              131. model/apple_pay_configuration
                                                                                                                              132. +
                                                                                                                              133. model/certificate_pinning_configuration
                                                                                                                              134. +
                                                                                                                              135. model/google_pay_configuration
                                                                                                                              136. +
                                                                                                                              137. model/language/language
                                                                                                                              138. +
                                                                                                                              139. model/language/languages
                                                                                                                              140. +
                                                                                                                              141. model/language/localized_string
                                                                                                                              142. +
                                                                                                                              143. model/merchant/merchant
                                                                                                                              144. +
                                                                                                                              145. model/merchant/merchant_authorization
                                                                                                                              146. +
                                                                                                                              147. model/merchant/merchant_details
                                                                                                                              148. +
                                                                                                                              149. model/payer/payer
                                                                                                                              150. +
                                                                                                                              151. model/payer/payer_address
                                                                                                                              152. +
                                                                                                                              153. model/payer/payer_context
                                                                                                                              154. +
                                                                                                                              155. model/paymentChannel/payment_channel
                                                                                                                              156. +
                                                                                                                              157. model/paymentChannel/payment_constraint
                                                                                                                              158. +
                                                                                                                              159. model/paymentChannel/payment_group
                                                                                                                              160. +
                                                                                                                              161. model/paymentMethod/automatic_payment_methods
                                                                                                                              162. +
                                                                                                                              163. model/paymentMethod/blik_alias
                                                                                                                              164. +
                                                                                                                              165. model/paymentMethod/credit_card_brand
                                                                                                                              166. +
                                                                                                                              167. model/paymentMethod/digital_wallet
                                                                                                                              168. +
                                                                                                                              169. model/paymentMethod/installment_payment
                                                                                                                              170. +
                                                                                                                              171. model/paymentMethod/payment_method
                                                                                                                              172. +
                                                                                                                              173. model/paymentMethod/payment_methods
                                                                                                                              174. +
                                                                                                                              175. model/paymentMethod/tokenized_card
                                                                                                                              176. +
                                                                                                                              177. model/result/google_pay_configure_result
                                                                                                                              178. +
                                                                                                                              179. model/result/google_pay_open_result
                                                                                                                              180. +
                                                                                                                              181. model/result/payment_channels_result
                                                                                                                              182. +
                                                                                                                              183. model/result/result
                                                                                                                              184. +
                                                                                                                              185. model/result/screenless_result
                                                                                                                              186. +
                                                                                                                              187. model/screenless/ambiguous_alias
                                                                                                                              188. +
                                                                                                                              189. model/screenless/ambiguous_blik_payment
                                                                                                                              190. +
                                                                                                                              191. model/screenless/apple_pay_payment
                                                                                                                              192. +
                                                                                                                              193. model/screenless/blik_payment
                                                                                                                              194. +
                                                                                                                              195. model/screenless/callbacks
                                                                                                                              196. +
                                                                                                                              197. model/screenless/credit_card
                                                                                                                              198. +
                                                                                                                              199. model/screenless/credit_card_config
                                                                                                                              200. +
                                                                                                                              201. model/screenless/credit_card_payment
                                                                                                                              202. +
                                                                                                                              203. model/screenless/expiration_date
                                                                                                                              204. +
                                                                                                                              205. model/screenless/google_pay_environment
                                                                                                                              206. +
                                                                                                                              207. model/screenless/google_pay_payment
                                                                                                                              208. +
                                                                                                                              209. model/screenless/google_pay_utils_configuration
                                                                                                                              210. +
                                                                                                                              211. model/screenless/notifications
                                                                                                                              212. +
                                                                                                                              213. model/screenless/pay_po_payment
                                                                                                                              214. +
                                                                                                                              215. model/screenless/payment_details
                                                                                                                              216. +
                                                                                                                              217. model/screenless/raty_pekao_payment
                                                                                                                              218. +
                                                                                                                              219. model/screenless/recursive
                                                                                                                              220. +
                                                                                                                              221. model/screenless/redirects
                                                                                                                              222. +
                                                                                                                              223. model/screenless/screenless_payment
                                                                                                                              224. +
                                                                                                                              225. model/screenless/transfer_method
                                                                                                                              226. +
                                                                                                                              227. model/screenless/transfer_payment
                                                                                                                              228. +
                                                                                                                              229. model/tokenization/tokenization
                                                                                                                              230. +
                                                                                                                              231. model/tpay_configuration
                                                                                                                              232. +
                                                                                                                              233. model/tpay_environment
                                                                                                                              234. +
                                                                                                                              235. model/transaction/single_transaction
                                                                                                                              236. +
                                                                                                                              237. model/transaction/token_payment
                                                                                                                              238. +
                                                                                                                              239. model/transaction/transaction
                                                                                                                              240. +
                                                                                                                              241. model/wallet_configuration
                                                                                                                              242. +
                                                                                                                              243. tpay_button
                                                                                                                              244. +
                                                                                                                              245. tpay_method_channel
                                                                                                                              246. +
                                                                                                                              247. tpay_platform_interface
                                                                                                                              248. +
                                                                                                                              249. util/google_pay_configuration_util
                                                                                                                              250. +
                                                                                                                              251. util/google_pay_util
                                                                                                                              252. +
                                                                                                                              253. util/payment_channels_util
                                                                                                                              254. +
                                                                                                                              255. util/result_util
                                                                                                                              256. +
                                                                                                                              257. util/screenless_result_util
                                                                                                                              @@ -176,7 +173,7 @@
                                                                                                                              tpay_button library
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                              diff --git a/doc/tpay_button/tpay_button-library-sidebar.html b/doc/tpay_button/tpay_button-library-sidebar.html index b1eddc2c..bcecd822 100644 --- a/doc/tpay_button/tpay_button-library-sidebar.html +++ b/doc/tpay_button/tpay_button-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                                -
                                                                                                                              1. Classes
                                                                                                                              2. +
                                                                                                                              3. Classes
                                                                                                                              4. TpayButton
                                                                                                                              5. diff --git a/doc/tpay_button/tpay_button-library.html b/doc/tpay_button/tpay_button-library.html index 28bad391..f2c593ee 100644 --- a/doc/tpay_button/tpay_button-library.html +++ b/doc/tpay_button/tpay_button-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                                New URL

                                                                                                                                +

                                                                                                                                New URL

                                                                                                                                \ No newline at end of file diff --git a/doc/tpay_method_channel/MethodChannelTpay-class-sidebar.html b/doc/tpay_method_channel/MethodChannelTpay-class-sidebar.html index 3e54c7af..82f23dc0 100644 --- a/doc/tpay_method_channel/MethodChannelTpay-class-sidebar.html +++ b/doc/tpay_method_channel/MethodChannelTpay-class-sidebar.html @@ -1,11 +1,11 @@
                                                                                                                                1. Constructors
                                                                                                                                2. -
                                                                                                                                3. MethodChannelTpay
                                                                                                                                4. +
                                                                                                                                5. new
                                                                                                                                6. -
                                                                                                                                7. +
                                                                                                                                8. Properties
                                                                                                                                9. @@ -13,6 +13,10 @@ hashCode +
                                                                                                                                10. + isPaymentOngoing +
                                                                                                                                11. +
                                                                                                                                12. runtimeType
                                                                                                                                13. diff --git a/doc/tpay_method_channel/MethodChannelTpay-class.html b/doc/tpay_method_channel/MethodChannelTpay-class.html index d14b6f39..ebead191 100644 --- a/doc/tpay_method_channel/MethodChannelTpay-class.html +++ b/doc/tpay_method_channel/MethodChannelTpay-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                                  MethodChannelTpay
                                                                                                                                  -
                                                                                                                                  - -
                                                                                                                                  +
                                                                                                                                  MethodChannelTpay class

                                                                                                                                  Constructors

                                                                                                                                  -
                                                                                                                                  +
                                                                                                                                  MethodChannelTpay()
                                                                                                                                  @@ -96,7 +93,7 @@

                                                                                                                                  Constructors

                                                                                                                                  Properties

                                                                                                                                  @@ -110,6 +107,18 @@

                                                                                                                                  Properties

                                                                                                                                  The hash code for this object.
                                                                                                                                  no setterinherited
                                                                                                                                  +
                                                                                                                      + +
                                                                                                                      + isPaymentOngoing + bool + + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      getter/setter pair
                                                                                                                      +
                                                                                                                      @@ -405,7 +414,7 @@

                                                                                                                      Operators

                                                                                                                      @@ -418,7 +427,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/MethodChannelTpay.html b/doc/tpay_method_channel/MethodChannelTpay/MethodChannelTpay.html index 3e041ab9..89e959c8 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/MethodChannelTpay.html +++ b/doc/tpay_method_channel/MethodChannelTpay/MethodChannelTpay.html @@ -4,8 +4,8 @@ - - MethodChannelTpay constructor - MethodChannelTpay - tpay_method_channel library - Dart API + + MethodChannelTpay.new constructor - MethodChannelTpay - tpay_method_channel library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                      MethodChannelTpay
                                                                                                                      +
                                                                                                                      MethodChannelTpay.new
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      MethodChannelTpay constructor
                                                                                                                      MethodChannelTpay class
                                                                                                                      @@ -89,7 +86,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/configure.html b/doc/tpay_method_channel/MethodChannelTpay/configure.html index 483d8cd3..014335ad 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/configure.html +++ b/doc/tpay_method_channel/MethodChannelTpay/configure.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -112,7 +109,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/configureGooglePayUtils.html b/doc/tpay_method_channel/MethodChannelTpay/configureGooglePayUtils.html index 549ae7c3..3bd6584c 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/configureGooglePayUtils.html +++ b/doc/tpay_method_channel/MethodChannelTpay/configureGooglePayUtils.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -113,7 +110,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/getAvailablePaymentChannels.html b/doc/tpay_method_channel/MethodChannelTpay/getAvailablePaymentChannels.html index 7d129aa0..12167c12 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/getAvailablePaymentChannels.html +++ b/doc/tpay_method_channel/MethodChannelTpay/getAvailablePaymentChannels.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      getAvailablePaymentChannels method

                                                                                                                      Implementation

                                                                                                                      @override
                                                                                                                       Future<PaymentChannelsResult> getAvailablePaymentChannels() async {
                                                                                                                      -  final result = await methodChannel.invokeMethod(getPaymentChannelsMethod);
                                                                                                                      +  // Passing an empty json is a workaround for iOS part that does not handle null
                                                                                                                      +  final result = await methodChannel.invokeMethod(getPaymentChannelsMethod, '{}');
                                                                                                                       
                                                                                                                         return mapPaymentChannelsResult(result);
                                                                                                                       }
                                                                                                                      @@ -96,7 +94,7 @@

                                                                                                                      Implementation

                                                                                                                      @@ -110,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/isGooglePayAvailable.html b/doc/tpay_method_channel/MethodChannelTpay/isGooglePayAvailable.html index 4c729a5e..761f0f38 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/isGooglePayAvailable.html +++ b/doc/tpay_method_channel/MethodChannelTpay/isGooglePayAvailable.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -110,7 +107,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/isPaymentOngoing.html b/doc/tpay_method_channel/MethodChannelTpay/isPaymentOngoing.html new file mode 100644 index 00000000..a535a97c --- /dev/null +++ b/doc/tpay_method_channel/MethodChannelTpay/isPaymentOngoing.html @@ -0,0 +1,108 @@ + + + + + + + + isPaymentOngoing property - MethodChannelTpay class - tpay_method_channel library - Dart API + + + + + + + + + + + + + + +
                                                                                                                      +
                                                                                                                      + menu + +
                                                                                                                      isPaymentOngoing
                                                                                                                      + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      isPaymentOngoing property +

                                                                                                                      + + +
                                                                                                                      + + bool + isPaymentOngoing +
                                                                                                                      getter/setter pair
                                                                                                                      + +
                                                                                                                      + + + +
                                                                                                                      +

                                                                                                                      Implementation

                                                                                                                      +
                                                                                                                      bool isPaymentOngoing = false;
                                                                                                                      +
                                                                                                                      + + + +
                                                                                                                      + + +
                                                                                                                      +
                                                                                                                      + + flutter_tpay + 1.2.8 + + +
                                                                                                                      + + + + + + + + diff --git a/doc/tpay_method_channel/MethodChannelTpay/openGooglePay.html b/doc/tpay_method_channel/MethodChannelTpay/openGooglePay.html index 8c4777fe..d98e752c 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/openGooglePay.html +++ b/doc/tpay_method_channel/MethodChannelTpay/openGooglePay.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -110,7 +107,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessAmbiguousBLIKPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessAmbiguousBLIKPayment.html index a6a33bb2..75ed030e 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessAmbiguousBLIKPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessAmbiguousBLIKPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -112,7 +109,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessApplePayPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessApplePayPayment.html index 58b034fb..29036766 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessApplePayPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessApplePayPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessBLIKPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessBLIKPayment.html index 46a66a2f..03e6a1d8 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessBLIKPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessBLIKPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessCreditCardPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessCreditCardPayment.html index d3c9b744..b656b130 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessCreditCardPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessCreditCardPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessGooglePayPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessGooglePayPayment.html index 48d0b555..df317062 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessGooglePayPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessGooglePayPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessPayPoPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessPayPoPayment.html index 0aada074..e5e75448 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessPayPoPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessPayPoPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessRatyPekaoPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessRatyPekaoPayment.html index b72c10d8..7056247c 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessRatyPekaoPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessRatyPekaoPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessTransferPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessTransferPayment.html index 1b3ee1b2..3e2e6c93 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/screenlessTransferPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/screenlessTransferPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/startCardTokenPayment.html b/doc/tpay_method_channel/MethodChannelTpay/startCardTokenPayment.html index e32892de..262117f7 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/startCardTokenPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/startCardTokenPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/startPayment.html b/doc/tpay_method_channel/MethodChannelTpay/startPayment.html index fb24e5dc..772b19d7 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/startPayment.html +++ b/doc/tpay_method_channel/MethodChannelTpay/startPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation SingleTransaction transaction, { void Function(String? transactionId)? onPaymentCreated, }) async { + if (isPaymentOngoing) { + throw Exception('Payment is already in progress'); + } + isPaymentOngoing = true; final intermediateResultStreamListener = eventChannel.receiveBroadcastStream().listen( (result) { final mappedResult = mapResult(result); @@ -96,10 +97,10 @@

                                                                                                                      Implementation

                                                                                                                      } }, ); - final result = await methodChannel - .invokeMethod(startPaymentMethod, jsonEncode(transaction)) - .whenComplete(() => intermediateResultStreamListener.cancel()); - + final result = await methodChannel.invokeMethod(startPaymentMethod, jsonEncode(transaction)).whenComplete(() { + isPaymentOngoing = false; + intermediateResultStreamListener.cancel(); + }); return mapResult(result); }
                                                                                                                      @@ -115,7 +116,7 @@

                                                                                                                      Implementation

                                                                                                                      @@ -129,7 +130,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/MethodChannelTpay/tokenizeCard.html b/doc/tpay_method_channel/MethodChannelTpay/tokenizeCard.html index d33cdcf9..1ed63405 100644 --- a/doc/tpay_method_channel/MethodChannelTpay/tokenizeCard.html +++ b/doc/tpay_method_channel/MethodChannelTpay/tokenizeCard.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -111,7 +108,7 @@
                                                                                                                      MethodChannelTpay class
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/configureGooglePayUtilsMethod-constant.html b/doc/tpay_method_channel/configureGooglePayUtilsMethod-constant.html index cfeaf157..571614de 100644 --- a/doc/tpay_method_channel/configureGooglePayUtilsMethod-constant.html +++ b/doc/tpay_method_channel/configureGooglePayUtilsMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      configureGooglePayUtilsMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/configureMethod-constant.html b/doc/tpay_method_channel/configureMethod-constant.html index d8bc1ed2..dcf74743 100644 --- a/doc/tpay_method_channel/configureMethod-constant.html +++ b/doc/tpay_method_channel/configureMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      configureMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/eventChannel-constant.html b/doc/tpay_method_channel/eventChannel-constant.html index 60461724..a01ce696 100644 --- a/doc/tpay_method_channel/eventChannel-constant.html +++ b/doc/tpay_method_channel/eventChannel-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      eventChannel
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/getPaymentChannelsMethod-constant.html b/doc/tpay_method_channel/getPaymentChannelsMethod-constant.html index 3d3cc9ef..9f440db1 100644 --- a/doc/tpay_method_channel/getPaymentChannelsMethod-constant.html +++ b/doc/tpay_method_channel/getPaymentChannelsMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      getPaymentChannelsMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/index.html b/doc/tpay_method_channel/index.html index 27bebece..b5f4cca3 100644 --- a/doc/tpay_method_channel/index.html +++ b/doc/tpay_method_channel/index.html @@ -31,17 +31,14 @@ -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Constants
                                                                                                                      flutter_tpay package
                                                                                                                      1. Libraries
                                                                                                                      2. -
                                                                                                                      3. model/apple_pay_configuration
                                                                                                                      4. -
                                                                                                                      5. model/certificate_pinning_configuration
                                                                                                                      6. -
                                                                                                                      7. model/google_pay_configuration
                                                                                                                      8. -
                                                                                                                      9. model/language/language
                                                                                                                      10. -
                                                                                                                      11. model/language/languages
                                                                                                                      12. -
                                                                                                                      13. model/language/localized_string
                                                                                                                      14. -
                                                                                                                      15. model/merchant/merchant
                                                                                                                      16. -
                                                                                                                      17. model/merchant/merchant_authorization
                                                                                                                      18. -
                                                                                                                      19. model/merchant/merchant_details
                                                                                                                      20. -
                                                                                                                      21. model/payer/payer
                                                                                                                      22. -
                                                                                                                      23. model/payer/payer_address
                                                                                                                      24. -
                                                                                                                      25. model/payer/payer_context
                                                                                                                      26. -
                                                                                                                      27. model/paymentChannel/payment_channel
                                                                                                                      28. -
                                                                                                                      29. model/paymentChannel/payment_constraint
                                                                                                                      30. -
                                                                                                                      31. model/paymentChannel/payment_group
                                                                                                                      32. -
                                                                                                                      33. model/paymentMethod/automatic_payment_methods
                                                                                                                      34. -
                                                                                                                      35. model/paymentMethod/blik_alias
                                                                                                                      36. -
                                                                                                                      37. model/paymentMethod/credit_card_brand
                                                                                                                      38. -
                                                                                                                      39. model/paymentMethod/digital_wallet
                                                                                                                      40. -
                                                                                                                      41. model/paymentMethod/installment_payment
                                                                                                                      42. -
                                                                                                                      43. model/paymentMethod/payment_method
                                                                                                                      44. -
                                                                                                                      45. model/paymentMethod/payment_methods
                                                                                                                      46. -
                                                                                                                      47. model/paymentMethod/tokenized_card
                                                                                                                      48. -
                                                                                                                      49. model/result/google_pay_configure_result
                                                                                                                      50. -
                                                                                                                      51. model/result/google_pay_open_result
                                                                                                                      52. -
                                                                                                                      53. model/result/payment_channels_result
                                                                                                                      54. -
                                                                                                                      55. model/result/result
                                                                                                                      56. -
                                                                                                                      57. model/result/screenless_result
                                                                                                                      58. -
                                                                                                                      59. model/screenless/ambiguous_alias
                                                                                                                      60. -
                                                                                                                      61. model/screenless/ambiguous_blik_payment
                                                                                                                      62. -
                                                                                                                      63. model/screenless/apple_pay_payment
                                                                                                                      64. -
                                                                                                                      65. model/screenless/blik_payment
                                                                                                                      66. -
                                                                                                                      67. model/screenless/callbacks
                                                                                                                      68. -
                                                                                                                      69. model/screenless/credit_card
                                                                                                                      70. -
                                                                                                                      71. model/screenless/credit_card_config
                                                                                                                      72. -
                                                                                                                      73. model/screenless/credit_card_payment
                                                                                                                      74. -
                                                                                                                      75. model/screenless/expiration_date
                                                                                                                      76. -
                                                                                                                      77. model/screenless/google_pay_environment
                                                                                                                      78. -
                                                                                                                      79. model/screenless/google_pay_payment
                                                                                                                      80. -
                                                                                                                      81. model/screenless/google_pay_utils_configuration
                                                                                                                      82. -
                                                                                                                      83. model/screenless/notifications
                                                                                                                      84. -
                                                                                                                      85. model/screenless/pay_po_payment
                                                                                                                      86. -
                                                                                                                      87. model/screenless/payment_details
                                                                                                                      88. -
                                                                                                                      89. model/screenless/raty_pekao_payment
                                                                                                                      90. -
                                                                                                                      91. model/screenless/recursive
                                                                                                                      92. -
                                                                                                                      93. model/screenless/redirects
                                                                                                                      94. -
                                                                                                                      95. model/screenless/screenless_payment
                                                                                                                      96. -
                                                                                                                      97. model/screenless/transfer_method
                                                                                                                      98. -
                                                                                                                      99. model/screenless/transfer_payment
                                                                                                                      100. -
                                                                                                                      101. model/tokenization/tokenization
                                                                                                                      102. -
                                                                                                                      103. model/tpay_configuration
                                                                                                                      104. -
                                                                                                                      105. model/tpay_environment
                                                                                                                      106. -
                                                                                                                      107. model/transaction/single_transaction
                                                                                                                      108. -
                                                                                                                      109. model/transaction/token_payment
                                                                                                                      110. -
                                                                                                                      111. model/transaction/transaction
                                                                                                                      112. -
                                                                                                                      113. model/wallet_configuration
                                                                                                                      114. -
                                                                                                                      115. tpay_button
                                                                                                                      116. -
                                                                                                                      117. tpay_method_channel
                                                                                                                      118. -
                                                                                                                      119. tpay_platform_interface
                                                                                                                      120. -
                                                                                                                      121. util/google_pay_configuration_util
                                                                                                                      122. -
                                                                                                                      123. util/google_pay_util
                                                                                                                      124. -
                                                                                                                      125. util/payment_channels_util
                                                                                                                      126. -
                                                                                                                      127. util/result_util
                                                                                                                      128. -
                                                                                                                      129. util/screenless_result_util
                                                                                                                      130. +
                                                                                                                      131. model/apple_pay_configuration
                                                                                                                      132. +
                                                                                                                      133. model/certificate_pinning_configuration
                                                                                                                      134. +
                                                                                                                      135. model/google_pay_configuration
                                                                                                                      136. +
                                                                                                                      137. model/language/language
                                                                                                                      138. +
                                                                                                                      139. model/language/languages
                                                                                                                      140. +
                                                                                                                      141. model/language/localized_string
                                                                                                                      142. +
                                                                                                                      143. model/merchant/merchant
                                                                                                                      144. +
                                                                                                                      145. model/merchant/merchant_authorization
                                                                                                                      146. +
                                                                                                                      147. model/merchant/merchant_details
                                                                                                                      148. +
                                                                                                                      149. model/payer/payer
                                                                                                                      150. +
                                                                                                                      151. model/payer/payer_address
                                                                                                                      152. +
                                                                                                                      153. model/payer/payer_context
                                                                                                                      154. +
                                                                                                                      155. model/paymentChannel/payment_channel
                                                                                                                      156. +
                                                                                                                      157. model/paymentChannel/payment_constraint
                                                                                                                      158. +
                                                                                                                      159. model/paymentChannel/payment_group
                                                                                                                      160. +
                                                                                                                      161. model/paymentMethod/automatic_payment_methods
                                                                                                                      162. +
                                                                                                                      163. model/paymentMethod/blik_alias
                                                                                                                      164. +
                                                                                                                      165. model/paymentMethod/credit_card_brand
                                                                                                                      166. +
                                                                                                                      167. model/paymentMethod/digital_wallet
                                                                                                                      168. +
                                                                                                                      169. model/paymentMethod/installment_payment
                                                                                                                      170. +
                                                                                                                      171. model/paymentMethod/payment_method
                                                                                                                      172. +
                                                                                                                      173. model/paymentMethod/payment_methods
                                                                                                                      174. +
                                                                                                                      175. model/paymentMethod/tokenized_card
                                                                                                                      176. +
                                                                                                                      177. model/result/google_pay_configure_result
                                                                                                                      178. +
                                                                                                                      179. model/result/google_pay_open_result
                                                                                                                      180. +
                                                                                                                      181. model/result/payment_channels_result
                                                                                                                      182. +
                                                                                                                      183. model/result/result
                                                                                                                      184. +
                                                                                                                      185. model/result/screenless_result
                                                                                                                      186. +
                                                                                                                      187. model/screenless/ambiguous_alias
                                                                                                                      188. +
                                                                                                                      189. model/screenless/ambiguous_blik_payment
                                                                                                                      190. +
                                                                                                                      191. model/screenless/apple_pay_payment
                                                                                                                      192. +
                                                                                                                      193. model/screenless/blik_payment
                                                                                                                      194. +
                                                                                                                      195. model/screenless/callbacks
                                                                                                                      196. +
                                                                                                                      197. model/screenless/credit_card
                                                                                                                      198. +
                                                                                                                      199. model/screenless/credit_card_config
                                                                                                                      200. +
                                                                                                                      201. model/screenless/credit_card_payment
                                                                                                                      202. +
                                                                                                                      203. model/screenless/expiration_date
                                                                                                                      204. +
                                                                                                                      205. model/screenless/google_pay_environment
                                                                                                                      206. +
                                                                                                                      207. model/screenless/google_pay_payment
                                                                                                                      208. +
                                                                                                                      209. model/screenless/google_pay_utils_configuration
                                                                                                                      210. +
                                                                                                                      211. model/screenless/notifications
                                                                                                                      212. +
                                                                                                                      213. model/screenless/pay_po_payment
                                                                                                                      214. +
                                                                                                                      215. model/screenless/payment_details
                                                                                                                      216. +
                                                                                                                      217. model/screenless/raty_pekao_payment
                                                                                                                      218. +
                                                                                                                      219. model/screenless/recursive
                                                                                                                      220. +
                                                                                                                      221. model/screenless/redirects
                                                                                                                      222. +
                                                                                                                      223. model/screenless/screenless_payment
                                                                                                                      224. +
                                                                                                                      225. model/screenless/transfer_method
                                                                                                                      226. +
                                                                                                                      227. model/screenless/transfer_payment
                                                                                                                      228. +
                                                                                                                      229. model/tokenization/tokenization
                                                                                                                      230. +
                                                                                                                      231. model/tpay_configuration
                                                                                                                      232. +
                                                                                                                      233. model/tpay_environment
                                                                                                                      234. +
                                                                                                                      235. model/transaction/single_transaction
                                                                                                                      236. +
                                                                                                                      237. model/transaction/token_payment
                                                                                                                      238. +
                                                                                                                      239. model/transaction/transaction
                                                                                                                      240. +
                                                                                                                      241. model/wallet_configuration
                                                                                                                      242. +
                                                                                                                      243. tpay_button
                                                                                                                      244. +
                                                                                                                      245. tpay_method_channel
                                                                                                                      246. +
                                                                                                                      247. tpay_platform_interface
                                                                                                                      248. +
                                                                                                                      249. util/google_pay_configuration_util
                                                                                                                      250. +
                                                                                                                      251. util/google_pay_util
                                                                                                                      252. +
                                                                                                                      253. util/payment_channels_util
                                                                                                                      254. +
                                                                                                                      255. util/result_util
                                                                                                                      256. +
                                                                                                                      257. util/screenless_result_util
                                                                                                                      @@ -397,7 +394,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/isGooglePayAvailableMethod-constant.html b/doc/tpay_method_channel/isGooglePayAvailableMethod-constant.html index f025c585..1d515166 100644 --- a/doc/tpay_method_channel/isGooglePayAvailableMethod-constant.html +++ b/doc/tpay_method_channel/isGooglePayAvailableMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      isGooglePayAvailableMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/methodChannel-constant.html b/doc/tpay_method_channel/methodChannel-constant.html index fd46c289..49f133a8 100644 --- a/doc/tpay_method_channel/methodChannel-constant.html +++ b/doc/tpay_method_channel/methodChannel-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      methodChannel
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/openGooglePayMethod-constant.html b/doc/tpay_method_channel/openGooglePayMethod-constant.html index 900bec4b..d303d1d2 100644 --- a/doc/tpay_method_channel/openGooglePayMethod-constant.html +++ b/doc/tpay_method_channel/openGooglePayMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      openGooglePayMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessAmbiguousBLIKPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessAmbiguousBLIKPaymentMethod-constant.html index 847eed98..c88dc83c 100644 --- a/doc/tpay_method_channel/screenlessAmbiguousBLIKPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessAmbiguousBLIKPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessAmbiguousBLIKPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessApplePayMethod-constant.html b/doc/tpay_method_channel/screenlessApplePayMethod-constant.html index 0d3bb9c3..da8fa1f8 100644 --- a/doc/tpay_method_channel/screenlessApplePayMethod-constant.html +++ b/doc/tpay_method_channel/screenlessApplePayMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessApplePayMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessBLIKPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessBLIKPaymentMethod-constant.html index da236439..aa5121b3 100644 --- a/doc/tpay_method_channel/screenlessBLIKPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessBLIKPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessBLIKPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessCreditCardPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessCreditCardPaymentMethod-constant.html index 44eb9ec5..58b11419 100644 --- a/doc/tpay_method_channel/screenlessCreditCardPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessCreditCardPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessCreditCardPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessGooglePayPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessGooglePayPaymentMethod-constant.html index c8b8cee9..197969e1 100644 --- a/doc/tpay_method_channel/screenlessGooglePayPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessGooglePayPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessGooglePayPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessPayPoPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessPayPoPaymentMethod-constant.html index 5da8641b..af69fa97 100644 --- a/doc/tpay_method_channel/screenlessPayPoPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessPayPoPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessPayPoPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessRatyPekaoPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessRatyPekaoPaymentMethod-constant.html index 08cb92df..f3bad367 100644 --- a/doc/tpay_method_channel/screenlessRatyPekaoPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessRatyPekaoPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessRatyPekaoPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/screenlessTransferPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessTransferPaymentMethod-constant.html index 1a3e3266..5cd75a9b 100644 --- a/doc/tpay_method_channel/screenlessTransferPaymentMethod-constant.html +++ b/doc/tpay_method_channel/screenlessTransferPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      screenlessTransferPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/startCardTokenPaymentMethod-constant.html b/doc/tpay_method_channel/startCardTokenPaymentMethod-constant.html index 595f01c4..7d7b91b6 100644 --- a/doc/tpay_method_channel/startCardTokenPaymentMethod-constant.html +++ b/doc/tpay_method_channel/startCardTokenPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      startCardTokenPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/startPaymentMethod-constant.html b/doc/tpay_method_channel/startPaymentMethod-constant.html index be8c7eff..296cda3d 100644 --- a/doc/tpay_method_channel/startPaymentMethod-constant.html +++ b/doc/tpay_method_channel/startPaymentMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      startPaymentMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/tokenizeCardMethod-constant.html b/doc/tpay_method_channel/tokenizeCardMethod-constant.html index d592ef27..e257c85e 100644 --- a/doc/tpay_method_channel/tokenizeCardMethod-constant.html +++ b/doc/tpay_method_channel/tokenizeCardMethod-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                      tokenizeCardMethod
                                                                                                                      -
                                                                                                                      - -
                                                                                                                      +
                                                                                                                      Implementation @@ -95,7 +92,7 @@
                                                                                                                      tpay_method_channel library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                      diff --git a/doc/tpay_method_channel/tpay_method_channel-library-sidebar.html b/doc/tpay_method_channel/tpay_method_channel-library-sidebar.html index 7229e413..36651066 100644 --- a/doc/tpay_method_channel/tpay_method_channel-library-sidebar.html +++ b/doc/tpay_method_channel/tpay_method_channel-library-sidebar.html @@ -1,11 +1,11 @@
                                                                                                                        -
                                                                                                                      1. Classes
                                                                                                                      2. +
                                                                                                                      3. Classes
                                                                                                                      4. MethodChannelTpay
                                                                                                                      5. -
                                                                                                                      6. Constants
                                                                                                                      7. +
                                                                                                                      8. Constants
                                                                                                                      9. configureGooglePayUtilsMethod
                                                                                                                      10. configureMethod
                                                                                                                      11. eventChannel
                                                                                                                      12. diff --git a/doc/tpay_method_channel/tpay_method_channel-library.html b/doc/tpay_method_channel/tpay_method_channel-library.html index d4982868..887324ee 100644 --- a/doc/tpay_method_channel/tpay_method_channel-library.html +++ b/doc/tpay_method_channel/tpay_method_channel-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                        New URL

                                                                                                                        +

                                                                                                                        New URL

                                                                                                                        \ No newline at end of file diff --git a/doc/tpay_platform_interface/TpayPlatform-class-sidebar.html b/doc/tpay_platform_interface/TpayPlatform-class-sidebar.html index 22247d8d..0434427c 100644 --- a/doc/tpay_platform_interface/TpayPlatform-class-sidebar.html +++ b/doc/tpay_platform_interface/TpayPlatform-class-sidebar.html @@ -1,7 +1,7 @@
                                                                                                                        1. Constructors
                                                                                                                        2. -
                                                                                                                        3. TpayPlatform
                                                                                                                        4. +
                                                                                                                        5. new
                                                                                                                        6. diff --git a/doc/tpay_platform_interface/TpayPlatform-class.html b/doc/tpay_platform_interface/TpayPlatform-class.html index 577228ad..e7297c56 100644 --- a/doc/tpay_platform_interface/TpayPlatform-class.html +++ b/doc/tpay_platform_interface/TpayPlatform-class.html @@ -25,24 +25,21 @@ menu
                                                                                                                          TpayPlatform
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          TpayPlatform class

                                                                                                                          Constructors

                                                                                                                          -
                                                                                                                          +
                                                                                                                          TpayPlatform()
                                                                                                                          @@ -426,7 +423,7 @@

                                                                                                                          Static Properties

                                                                                                                          @@ -439,7 +436,7 @@
                                                                                                                          tpay_platform_interface library
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/TpayPlatform.html b/doc/tpay_platform_interface/TpayPlatform/TpayPlatform.html index 7c855c33..fe621aa1 100644 --- a/doc/tpay_platform_interface/TpayPlatform/TpayPlatform.html +++ b/doc/tpay_platform_interface/TpayPlatform/TpayPlatform.html @@ -4,8 +4,8 @@ - - TpayPlatform constructor - TpayPlatform - tpay_platform_interface library - Dart API + + TpayPlatform.new constructor - TpayPlatform - tpay_platform_interface library - Dart API @@ -25,25 +25,22 @@ menu -
                                                                                                                          TpayPlatform
                                                                                                                          +
                                                                                                                          TpayPlatform.new
                                                                                                                          -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation
                                                                                                                          TpayPlatform class
                                                                                                                          @@ -93,7 +90,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/configure.html b/doc/tpay_platform_interface/TpayPlatform/configure.html index befa8e8b..f17f13f9 100644 --- a/doc/tpay_platform_interface/TpayPlatform/configure.html +++ b/doc/tpay_platform_interface/TpayPlatform/configure.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -102,7 +99,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/configureGooglePayUtils.html b/doc/tpay_platform_interface/TpayPlatform/configureGooglePayUtils.html index 09585752..30e0caaf 100644 --- a/doc/tpay_platform_interface/TpayPlatform/configureGooglePayUtils.html +++ b/doc/tpay_platform_interface/TpayPlatform/configureGooglePayUtils.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/getAvailablePaymentChannels.html b/doc/tpay_platform_interface/TpayPlatform/getAvailablePaymentChannels.html index a2bf5d43..3baa2673 100644 --- a/doc/tpay_platform_interface/TpayPlatform/getAvailablePaymentChannels.html +++ b/doc/tpay_platform_interface/TpayPlatform/getAvailablePaymentChannels.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -100,7 +97,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/instance.html b/doc/tpay_platform_interface/TpayPlatform/instance.html index 90a50f0b..fb6b4b67 100644 --- a/doc/tpay_platform_interface/TpayPlatform/instance.html +++ b/doc/tpay_platform_interface/TpayPlatform/instance.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -126,7 +123,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/isGooglePayAvailable.html b/doc/tpay_platform_interface/TpayPlatform/isGooglePayAvailable.html index 4b2a2f05..a3c83ae9 100644 --- a/doc/tpay_platform_interface/TpayPlatform/isGooglePayAvailable.html +++ b/doc/tpay_platform_interface/TpayPlatform/isGooglePayAvailable.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -100,7 +97,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/openGooglePay.html b/doc/tpay_platform_interface/TpayPlatform/openGooglePay.html index b346da50..2f74834f 100644 --- a/doc/tpay_platform_interface/TpayPlatform/openGooglePay.html +++ b/doc/tpay_platform_interface/TpayPlatform/openGooglePay.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -100,7 +97,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessAmbiguousBLIKPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessAmbiguousBLIKPayment.html index 71919bd6..2905ba92 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessAmbiguousBLIKPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessAmbiguousBLIKPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessApplePayPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessApplePayPayment.html index a0a4a8d1..93425278 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessApplePayPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessApplePayPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessBLIKPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessBLIKPayment.html index a7363d91..7edc160f 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessBLIKPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessBLIKPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessCreditCardPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessCreditCardPayment.html index df5a5c0d..a99506cc 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessCreditCardPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessCreditCardPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessGooglePayPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessGooglePayPayment.html index e73848c9..9a43eba7 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessGooglePayPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessGooglePayPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessPayPoPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessPayPoPayment.html index 3da69e7d..fa73698d 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessPayPoPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessPayPoPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessRatyPekaoPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessRatyPekaoPayment.html index 2a912a12..9e4e3e23 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessRatyPekaoPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessRatyPekaoPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessTransferPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessTransferPayment.html index 196dab51..4c2ca507 100644 --- a/doc/tpay_platform_interface/TpayPlatform/screenlessTransferPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/screenlessTransferPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/startCardTokenPayment.html b/doc/tpay_platform_interface/TpayPlatform/startCardTokenPayment.html index 1292c106..1c4d635b 100644 --- a/doc/tpay_platform_interface/TpayPlatform/startCardTokenPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/startCardTokenPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/startPayment.html b/doc/tpay_platform_interface/TpayPlatform/startPayment.html index c8e8ca4d..63ec24ee 100644 --- a/doc/tpay_platform_interface/TpayPlatform/startPayment.html +++ b/doc/tpay_platform_interface/TpayPlatform/startPayment.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -106,7 +103,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/TpayPlatform/tokenizeCard.html b/doc/tpay_platform_interface/TpayPlatform/tokenizeCard.html index d0849698..6da71978 100644 --- a/doc/tpay_platform_interface/TpayPlatform/tokenizeCard.html +++ b/doc/tpay_platform_interface/TpayPlatform/tokenizeCard.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Implementation @@ -101,7 +98,7 @@
                                                                                                                          TpayPlatform class
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/index.html b/doc/tpay_platform_interface/index.html index 454095da..f28eb1d7 100644 --- a/doc/tpay_platform_interface/index.html +++ b/doc/tpay_platform_interface/index.html @@ -31,17 +31,14 @@ -
                                                                                                                          - -
                                                                                                                          +
                                                                                                                          Classes
                                                                                                                          flutter_tpay package
                                                                                                                          1. Libraries
                                                                                                                          2. -
                                                                                                                          3. model/apple_pay_configuration
                                                                                                                          4. -
                                                                                                                          5. model/certificate_pinning_configuration
                                                                                                                          6. -
                                                                                                                          7. model/google_pay_configuration
                                                                                                                          8. -
                                                                                                                          9. model/language/language
                                                                                                                          10. -
                                                                                                                          11. model/language/languages
                                                                                                                          12. -
                                                                                                                          13. model/language/localized_string
                                                                                                                          14. -
                                                                                                                          15. model/merchant/merchant
                                                                                                                          16. -
                                                                                                                          17. model/merchant/merchant_authorization
                                                                                                                          18. -
                                                                                                                          19. model/merchant/merchant_details
                                                                                                                          20. -
                                                                                                                          21. model/payer/payer
                                                                                                                          22. -
                                                                                                                          23. model/payer/payer_address
                                                                                                                          24. -
                                                                                                                          25. model/payer/payer_context
                                                                                                                          26. -
                                                                                                                          27. model/paymentChannel/payment_channel
                                                                                                                          28. -
                                                                                                                          29. model/paymentChannel/payment_constraint
                                                                                                                          30. -
                                                                                                                          31. model/paymentChannel/payment_group
                                                                                                                          32. -
                                                                                                                          33. model/paymentMethod/automatic_payment_methods
                                                                                                                          34. -
                                                                                                                          35. model/paymentMethod/blik_alias
                                                                                                                          36. -
                                                                                                                          37. model/paymentMethod/credit_card_brand
                                                                                                                          38. -
                                                                                                                          39. model/paymentMethod/digital_wallet
                                                                                                                          40. -
                                                                                                                          41. model/paymentMethod/installment_payment
                                                                                                                          42. -
                                                                                                                          43. model/paymentMethod/payment_method
                                                                                                                          44. -
                                                                                                                          45. model/paymentMethod/payment_methods
                                                                                                                          46. -
                                                                                                                          47. model/paymentMethod/tokenized_card
                                                                                                                          48. -
                                                                                                                          49. model/result/google_pay_configure_result
                                                                                                                          50. -
                                                                                                                          51. model/result/google_pay_open_result
                                                                                                                          52. -
                                                                                                                          53. model/result/payment_channels_result
                                                                                                                          54. -
                                                                                                                          55. model/result/result
                                                                                                                          56. -
                                                                                                                          57. model/result/screenless_result
                                                                                                                          58. -
                                                                                                                          59. model/screenless/ambiguous_alias
                                                                                                                          60. -
                                                                                                                          61. model/screenless/ambiguous_blik_payment
                                                                                                                          62. -
                                                                                                                          63. model/screenless/apple_pay_payment
                                                                                                                          64. -
                                                                                                                          65. model/screenless/blik_payment
                                                                                                                          66. -
                                                                                                                          67. model/screenless/callbacks
                                                                                                                          68. -
                                                                                                                          69. model/screenless/credit_card
                                                                                                                          70. -
                                                                                                                          71. model/screenless/credit_card_config
                                                                                                                          72. -
                                                                                                                          73. model/screenless/credit_card_payment
                                                                                                                          74. -
                                                                                                                          75. model/screenless/expiration_date
                                                                                                                          76. -
                                                                                                                          77. model/screenless/google_pay_environment
                                                                                                                          78. -
                                                                                                                          79. model/screenless/google_pay_payment
                                                                                                                          80. -
                                                                                                                          81. model/screenless/google_pay_utils_configuration
                                                                                                                          82. -
                                                                                                                          83. model/screenless/notifications
                                                                                                                          84. -
                                                                                                                          85. model/screenless/pay_po_payment
                                                                                                                          86. -
                                                                                                                          87. model/screenless/payment_details
                                                                                                                          88. -
                                                                                                                          89. model/screenless/raty_pekao_payment
                                                                                                                          90. -
                                                                                                                          91. model/screenless/recursive
                                                                                                                          92. -
                                                                                                                          93. model/screenless/redirects
                                                                                                                          94. -
                                                                                                                          95. model/screenless/screenless_payment
                                                                                                                          96. -
                                                                                                                          97. model/screenless/transfer_method
                                                                                                                          98. -
                                                                                                                          99. model/screenless/transfer_payment
                                                                                                                          100. -
                                                                                                                          101. model/tokenization/tokenization
                                                                                                                          102. -
                                                                                                                          103. model/tpay_configuration
                                                                                                                          104. -
                                                                                                                          105. model/tpay_environment
                                                                                                                          106. -
                                                                                                                          107. model/transaction/single_transaction
                                                                                                                          108. -
                                                                                                                          109. model/transaction/token_payment
                                                                                                                          110. -
                                                                                                                          111. model/transaction/transaction
                                                                                                                          112. -
                                                                                                                          113. model/wallet_configuration
                                                                                                                          114. -
                                                                                                                          115. tpay_button
                                                                                                                          116. -
                                                                                                                          117. tpay_method_channel
                                                                                                                          118. -
                                                                                                                          119. tpay_platform_interface
                                                                                                                          120. -
                                                                                                                          121. util/google_pay_configuration_util
                                                                                                                          122. -
                                                                                                                          123. util/google_pay_util
                                                                                                                          124. -
                                                                                                                          125. util/payment_channels_util
                                                                                                                          126. -
                                                                                                                          127. util/result_util
                                                                                                                          128. -
                                                                                                                          129. util/screenless_result_util
                                                                                                                          130. +
                                                                                                                          131. model/apple_pay_configuration
                                                                                                                          132. +
                                                                                                                          133. model/certificate_pinning_configuration
                                                                                                                          134. +
                                                                                                                          135. model/google_pay_configuration
                                                                                                                          136. +
                                                                                                                          137. model/language/language
                                                                                                                          138. +
                                                                                                                          139. model/language/languages
                                                                                                                          140. +
                                                                                                                          141. model/language/localized_string
                                                                                                                          142. +
                                                                                                                          143. model/merchant/merchant
                                                                                                                          144. +
                                                                                                                          145. model/merchant/merchant_authorization
                                                                                                                          146. +
                                                                                                                          147. model/merchant/merchant_details
                                                                                                                          148. +
                                                                                                                          149. model/payer/payer
                                                                                                                          150. +
                                                                                                                          151. model/payer/payer_address
                                                                                                                          152. +
                                                                                                                          153. model/payer/payer_context
                                                                                                                          154. +
                                                                                                                          155. model/paymentChannel/payment_channel
                                                                                                                          156. +
                                                                                                                          157. model/paymentChannel/payment_constraint
                                                                                                                          158. +
                                                                                                                          159. model/paymentChannel/payment_group
                                                                                                                          160. +
                                                                                                                          161. model/paymentMethod/automatic_payment_methods
                                                                                                                          162. +
                                                                                                                          163. model/paymentMethod/blik_alias
                                                                                                                          164. +
                                                                                                                          165. model/paymentMethod/credit_card_brand
                                                                                                                          166. +
                                                                                                                          167. model/paymentMethod/digital_wallet
                                                                                                                          168. +
                                                                                                                          169. model/paymentMethod/installment_payment
                                                                                                                          170. +
                                                                                                                          171. model/paymentMethod/payment_method
                                                                                                                          172. +
                                                                                                                          173. model/paymentMethod/payment_methods
                                                                                                                          174. +
                                                                                                                          175. model/paymentMethod/tokenized_card
                                                                                                                          176. +
                                                                                                                          177. model/result/google_pay_configure_result
                                                                                                                          178. +
                                                                                                                          179. model/result/google_pay_open_result
                                                                                                                          180. +
                                                                                                                          181. model/result/payment_channels_result
                                                                                                                          182. +
                                                                                                                          183. model/result/result
                                                                                                                          184. +
                                                                                                                          185. model/result/screenless_result
                                                                                                                          186. +
                                                                                                                          187. model/screenless/ambiguous_alias
                                                                                                                          188. +
                                                                                                                          189. model/screenless/ambiguous_blik_payment
                                                                                                                          190. +
                                                                                                                          191. model/screenless/apple_pay_payment
                                                                                                                          192. +
                                                                                                                          193. model/screenless/blik_payment
                                                                                                                          194. +
                                                                                                                          195. model/screenless/callbacks
                                                                                                                          196. +
                                                                                                                          197. model/screenless/credit_card
                                                                                                                          198. +
                                                                                                                          199. model/screenless/credit_card_config
                                                                                                                          200. +
                                                                                                                          201. model/screenless/credit_card_payment
                                                                                                                          202. +
                                                                                                                          203. model/screenless/expiration_date
                                                                                                                          204. +
                                                                                                                          205. model/screenless/google_pay_environment
                                                                                                                          206. +
                                                                                                                          207. model/screenless/google_pay_payment
                                                                                                                          208. +
                                                                                                                          209. model/screenless/google_pay_utils_configuration
                                                                                                                          210. +
                                                                                                                          211. model/screenless/notifications
                                                                                                                          212. +
                                                                                                                          213. model/screenless/pay_po_payment
                                                                                                                          214. +
                                                                                                                          215. model/screenless/payment_details
                                                                                                                          216. +
                                                                                                                          217. model/screenless/raty_pekao_payment
                                                                                                                          218. +
                                                                                                                          219. model/screenless/recursive
                                                                                                                          220. +
                                                                                                                          221. model/screenless/redirects
                                                                                                                          222. +
                                                                                                                          223. model/screenless/screenless_payment
                                                                                                                          224. +
                                                                                                                          225. model/screenless/transfer_method
                                                                                                                          226. +
                                                                                                                          227. model/screenless/transfer_payment
                                                                                                                          228. +
                                                                                                                          229. model/tokenization/tokenization
                                                                                                                          230. +
                                                                                                                          231. model/tpay_configuration
                                                                                                                          232. +
                                                                                                                          233. model/tpay_environment
                                                                                                                          234. +
                                                                                                                          235. model/transaction/single_transaction
                                                                                                                          236. +
                                                                                                                          237. model/transaction/token_payment
                                                                                                                          238. +
                                                                                                                          239. model/transaction/transaction
                                                                                                                          240. +
                                                                                                                          241. model/wallet_configuration
                                                                                                                          242. +
                                                                                                                          243. tpay_button
                                                                                                                          244. +
                                                                                                                          245. tpay_method_channel
                                                                                                                          246. +
                                                                                                                          247. tpay_platform_interface
                                                                                                                          248. +
                                                                                                                          249. util/google_pay_configuration_util
                                                                                                                          250. +
                                                                                                                          251. util/google_pay_util
                                                                                                                          252. +
                                                                                                                          253. util/payment_channels_util
                                                                                                                          254. +
                                                                                                                          255. util/result_util
                                                                                                                          256. +
                                                                                                                          257. util/screenless_result_util
                                                                                                                          @@ -176,7 +173,7 @@
                                                                                                                          tpay_platform_interface library
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                          diff --git a/doc/tpay_platform_interface/tpay_platform_interface-library-sidebar.html b/doc/tpay_platform_interface/tpay_platform_interface-library-sidebar.html index f6fb575a..6ec4cc5e 100644 --- a/doc/tpay_platform_interface/tpay_platform_interface-library-sidebar.html +++ b/doc/tpay_platform_interface/tpay_platform_interface-library-sidebar.html @@ -1,5 +1,5 @@
                                                                                                                            -
                                                                                                                          1. Classes
                                                                                                                          2. +
                                                                                                                          3. Classes
                                                                                                                          4. TpayPlatform
                                                                                                                          5. diff --git a/doc/tpay_platform_interface/tpay_platform_interface-library.html b/doc/tpay_platform_interface/tpay_platform_interface-library.html index c1bbf230..f3eddf5a 100644 --- a/doc/tpay_platform_interface/tpay_platform_interface-library.html +++ b/doc/tpay_platform_interface/tpay_platform_interface-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                            New URL

                                                                                                                            +

                                                                                                                            New URL

                                                                                                                            \ No newline at end of file diff --git a/doc/util_google_pay_configuration_util/error-constant.html b/doc/util_google_pay_configuration_util/error-constant.html index 738d0192..c469acab 100644 --- a/doc/util_google_pay_configuration_util/error-constant.html +++ b/doc/util_google_pay_configuration_util/error-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            error
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/index.html b/doc/util_google_pay_configuration_util/index.html index 69a9d4be..1182117a 100644 --- a/doc/util_google_pay_configuration_util/index.html +++ b/doc/util_google_pay_configuration_util/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Functions
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -246,7 +243,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/mapGooglePayConfigurationResult.html b/doc/util_google_pay_configuration_util/mapGooglePayConfigurationResult.html index ac51da59..1c285ce0 100644 --- a/doc/util_google_pay_configuration_util/mapGooglePayConfigurationResult.html +++ b/doc/util_google_pay_configuration_util/mapGooglePayConfigurationResult.html @@ -25,24 +25,21 @@ menu
                                                                                                                            mapGooglePayConfigurationResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -107,7 +104,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/message-constant.html b/doc/util_google_pay_configuration_util/message-constant.html index dc6364c3..a0f555fb 100644 --- a/doc/util_google_pay_configuration_util/message-constant.html +++ b/doc/util_google_pay_configuration_util/message-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            message
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/success-constant.html b/doc/util_google_pay_configuration_util/success-constant.html index 869ab413..a425d930 100644 --- a/doc/util_google_pay_configuration_util/success-constant.html +++ b/doc/util_google_pay_configuration_util/success-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            success
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/type-constant.html b/doc/util_google_pay_configuration_util/type-constant.html index 5ba0f69d..1d15a0b8 100644 --- a/doc/util_google_pay_configuration_util/type-constant.html +++ b/doc/util_google_pay_configuration_util/type-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            type
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/unknownGooglePayConfigurationResult-constant.html b/doc/util_google_pay_configuration_util/unknownGooglePayConfigurationResult-constant.html index d45fd778..60865fca 100644 --- a/doc/util_google_pay_configuration_util/unknownGooglePayConfigurationResult-constant.html +++ b/doc/util_google_pay_configuration_util/unknownGooglePayConfigurationResult-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            unknownGooglePayConfigurationResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_configuration_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library-sidebar.html b/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library-sidebar.html index 8fe0d860..56d6407c 100644 --- a/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library-sidebar.html +++ b/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library-sidebar.html @@ -3,7 +3,7 @@ -
                                                                                                                          6. Constants
                                                                                                                          7. +
                                                                                                                          8. Constants
                                                                                                                          9. error
                                                                                                                          10. message
                                                                                                                          11. success
                                                                                                                          12. @@ -11,7 +11,7 @@
                                                                                                                          13. unknownGooglePayConfigurationResult
                                                                                                                          14. -
                                                                                                                          15. Functions
                                                                                                                          16. +
                                                                                                                          17. Functions
                                                                                                                          18. mapGooglePayConfigurationResult
                                                                                                                          19. diff --git a/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library.html b/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library.html index 73bdf768..41c6eb06 100644 --- a/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library.html +++ b/doc/util_google_pay_configuration_util/util_google_pay_configuration_util-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                            New URL

                                                                                                                            +

                                                                                                                            New URL

                                                                                                                            \ No newline at end of file diff --git a/doc/util_google_pay_util/cancelled-constant.html b/doc/util_google_pay_util/cancelled-constant.html index 741e0d21..5ba906a3 100644 --- a/doc/util_google_pay_util/cancelled-constant.html +++ b/doc/util_google_pay_util/cancelled-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            cancelled
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/cardNetwork-constant.html b/doc/util_google_pay_util/cardNetwork-constant.html index 53f1b1a9..faaf3fb6 100644 --- a/doc/util_google_pay_util/cardNetwork-constant.html +++ b/doc/util_google_pay_util/cardNetwork-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            cardNetwork
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/cardTail-constant.html b/doc/util_google_pay_util/cardTail-constant.html index 8d83f593..b8db10dd 100644 --- a/doc/util_google_pay_util/cardTail-constant.html +++ b/doc/util_google_pay_util/cardTail-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            cardTail
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/description-constant.html b/doc/util_google_pay_util/description-constant.html index b174452c..de74a1b7 100644 --- a/doc/util_google_pay_util/description-constant.html +++ b/doc/util_google_pay_util/description-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            description
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/error-constant.html b/doc/util_google_pay_util/error-constant.html index 415ee111..7c231727 100644 --- a/doc/util_google_pay_util/error-constant.html +++ b/doc/util_google_pay_util/error-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            error
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/index.html b/doc/util_google_pay_util/index.html index 376506d8..1abd72f4 100644 --- a/doc/util_google_pay_util/index.html +++ b/doc/util_google_pay_util/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Functions
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -343,7 +340,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/mapGooglePayConfigurationResult.html b/doc/util_google_pay_util/mapGooglePayConfigurationResult.html index e8087d0f..0c6e705d 100644 --- a/doc/util_google_pay_util/mapGooglePayConfigurationResult.html +++ b/doc/util_google_pay_util/mapGooglePayConfigurationResult.html @@ -25,24 +25,21 @@ menu
                                                                                                                            mapGooglePayConfigurationResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -107,7 +104,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/mapGooglePayOpenResult.html b/doc/util_google_pay_util/mapGooglePayOpenResult.html index 61f01c3d..8b214dc3 100644 --- a/doc/util_google_pay_util/mapGooglePayOpenResult.html +++ b/doc/util_google_pay_util/mapGooglePayOpenResult.html @@ -25,24 +25,21 @@ menu
                                                                                                                            mapGooglePayOpenResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -114,7 +111,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/message-constant.html b/doc/util_google_pay_util/message-constant.html index f682571c..6e7d92c2 100644 --- a/doc/util_google_pay_util/message-constant.html +++ b/doc/util_google_pay_util/message-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            message
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/notConfigured-constant.html b/doc/util_google_pay_util/notConfigured-constant.html index 69cc55bc..12cff6d3 100644 --- a/doc/util_google_pay_util/notConfigured-constant.html +++ b/doc/util_google_pay_util/notConfigured-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            notConfigured
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/success-constant.html b/doc/util_google_pay_util/success-constant.html index d5952bd0..2802998e 100644 --- a/doc/util_google_pay_util/success-constant.html +++ b/doc/util_google_pay_util/success-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            success
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/token-constant.html b/doc/util_google_pay_util/token-constant.html index 37c99a04..0425eb00 100644 --- a/doc/util_google_pay_util/token-constant.html +++ b/doc/util_google_pay_util/token-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            token
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/type-constant.html b/doc/util_google_pay_util/type-constant.html index 2d460a47..359fe3b9 100644 --- a/doc/util_google_pay_util/type-constant.html +++ b/doc/util_google_pay_util/type-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            type
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/unknownError-constant.html b/doc/util_google_pay_util/unknownError-constant.html index 28eba016..dc78b61b 100644 --- a/doc/util_google_pay_util/unknownError-constant.html +++ b/doc/util_google_pay_util/unknownError-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            unknownError
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/unknownGooglePayConfigurationResult-constant.html b/doc/util_google_pay_util/unknownGooglePayConfigurationResult-constant.html index c7390f5b..7333dd80 100644 --- a/doc/util_google_pay_util/unknownGooglePayConfigurationResult-constant.html +++ b/doc/util_google_pay_util/unknownGooglePayConfigurationResult-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            unknownGooglePayConfigurationResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            google_pay_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_google_pay_util/util_google_pay_util-library-sidebar.html b/doc/util_google_pay_util/util_google_pay_util-library-sidebar.html index bf22e5fe..8573acf3 100644 --- a/doc/util_google_pay_util/util_google_pay_util-library-sidebar.html +++ b/doc/util_google_pay_util/util_google_pay_util-library-sidebar.html @@ -3,7 +3,7 @@ -
                                                                                                                          20. Constants
                                                                                                                          21. +
                                                                                                                          22. Constants
                                                                                                                          23. cancelled
                                                                                                                          24. cardNetwork
                                                                                                                          25. cardTail
                                                                                                                          26. @@ -18,7 +18,7 @@
                                                                                                                          27. unknownGooglePayConfigurationResult
                                                                                                                          28. -
                                                                                                                          29. Functions
                                                                                                                          30. +
                                                                                                                          31. Functions
                                                                                                                          32. mapGooglePayConfigurationResult
                                                                                                                          33. mapGooglePayOpenResult
                                                                                                                          34. diff --git a/doc/util_google_pay_util/util_google_pay_util-library.html b/doc/util_google_pay_util/util_google_pay_util-library.html index 9040359b..24bde126 100644 --- a/doc/util_google_pay_util/util_google_pay_util-library.html +++ b/doc/util_google_pay_util/util_google_pay_util-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                            New URL

                                                                                                                            +

                                                                                                                            New URL

                                                                                                                            \ No newline at end of file diff --git a/doc/util_payment_channels_util/channels-constant.html b/doc/util_payment_channels_util/channels-constant.html index 490842c0..9164bde7 100644 --- a/doc/util_payment_channels_util/channels-constant.html +++ b/doc/util_payment_channels_util/channels-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            channels
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/currency-constant.html b/doc/util_payment_channels_util/currency-constant.html index 74ffb9a9..86fc09e9 100644 --- a/doc/util_payment_channels_util/currency-constant.html +++ b/doc/util_payment_channels_util/currency-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            currency
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/error-constant.html b/doc/util_payment_channels_util/error-constant.html index 3c9708c9..a7499924 100644 --- a/doc/util_payment_channels_util/error-constant.html +++ b/doc/util_payment_channels_util/error-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            error
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/index.html b/doc/util_payment_channels_util/index.html index e3b867a2..a7fba922 100644 --- a/doc/util_payment_channels_util/index.html +++ b/doc/util_payment_channels_util/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Functions
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -282,7 +279,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/language-constant.html b/doc/util_payment_channels_util/language-constant.html index c08e85af..03522bd8 100644 --- a/doc/util_payment_channels_util/language-constant.html +++ b/doc/util_payment_channels_util/language-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            language
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/mapPaymentChannelsResult.html b/doc/util_payment_channels_util/mapPaymentChannelsResult.html index d5bf954f..a852ce25 100644 --- a/doc/util_payment_channels_util/mapPaymentChannelsResult.html +++ b/doc/util_payment_channels_util/mapPaymentChannelsResult.html @@ -25,24 +25,21 @@ menu
                                                                                                                            mapPaymentChannelsResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -107,7 +104,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/message-constant.html b/doc/util_payment_channels_util/message-constant.html index d9e7bf9d..dabc2f77 100644 --- a/doc/util_payment_channels_util/message-constant.html +++ b/doc/util_payment_channels_util/message-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            message
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/success-constant.html b/doc/util_payment_channels_util/success-constant.html index d3034916..7c641e56 100644 --- a/doc/util_payment_channels_util/success-constant.html +++ b/doc/util_payment_channels_util/success-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            success
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/type-constant.html b/doc/util_payment_channels_util/type-constant.html index d3f48d61..59530c62 100644 --- a/doc/util_payment_channels_util/type-constant.html +++ b/doc/util_payment_channels_util/type-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            type
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/unknownType-constant.html b/doc/util_payment_channels_util/unknownType-constant.html index 3420c64f..538bde88 100644 --- a/doc/util_payment_channels_util/unknownType-constant.html +++ b/doc/util_payment_channels_util/unknownType-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            unknownType
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            payment_channels_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_payment_channels_util/util_payment_channels_util-library-sidebar.html b/doc/util_payment_channels_util/util_payment_channels_util-library-sidebar.html index 262e6bbb..7f3b1a11 100644 --- a/doc/util_payment_channels_util/util_payment_channels_util-library-sidebar.html +++ b/doc/util_payment_channels_util/util_payment_channels_util-library-sidebar.html @@ -3,7 +3,7 @@ -
                                                                                                                          35. Constants
                                                                                                                          36. +
                                                                                                                          37. Constants
                                                                                                                          38. channels
                                                                                                                          39. currency
                                                                                                                          40. error
                                                                                                                          41. @@ -14,7 +14,7 @@
                                                                                                                          42. unknownType
                                                                                                                          43. -
                                                                                                                          44. Functions
                                                                                                                          45. +
                                                                                                                          46. Functions
                                                                                                                          47. mapPaymentChannelsResult
                                                                                                                          48. diff --git a/doc/util_payment_channels_util/util_payment_channels_util-library.html b/doc/util_payment_channels_util/util_payment_channels_util-library.html index 9db75d6e..c0494b6a 100644 --- a/doc/util_payment_channels_util/util_payment_channels_util-library.html +++ b/doc/util_payment_channels_util/util_payment_channels_util-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                            New URL

                                                                                                                            +

                                                                                                                            New URL

                                                                                                                            \ No newline at end of file diff --git a/doc/util_result_util/configurationSuccess-constant.html b/doc/util_result_util/configurationSuccess-constant.html index 74dd183a..f8465839 100644 --- a/doc/util_result_util/configurationSuccess-constant.html +++ b/doc/util_result_util/configurationSuccess-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            configurationSuccess
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/index.html b/doc/util_result_util/index.html index b183c156..a18abfe0 100644 --- a/doc/util_result_util/index.html +++ b/doc/util_result_util/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Functions
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -330,7 +327,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/mapResult.html b/doc/util_result_util/mapResult.html index 9994fc55..333b9235 100644 --- a/doc/util_result_util/mapResult.html +++ b/doc/util_result_util/mapResult.html @@ -25,24 +25,21 @@ menu
                                                                                                                            mapResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -121,7 +118,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/methodCallError-constant.html b/doc/util_result_util/methodCallError-constant.html index 4227e598..3ee1827d 100644 --- a/doc/util_result_util/methodCallError-constant.html +++ b/doc/util_result_util/methodCallError-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            methodCallError
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/moduleClosed-constant.html b/doc/util_result_util/moduleClosed-constant.html index 13d4ec66..66e20a73 100644 --- a/doc/util_result_util/moduleClosed-constant.html +++ b/doc/util_result_util/moduleClosed-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            moduleClosed
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/paymentCancelled-constant.html b/doc/util_result_util/paymentCancelled-constant.html index 67c99339..054c289e 100644 --- a/doc/util_result_util/paymentCancelled-constant.html +++ b/doc/util_result_util/paymentCancelled-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            paymentCancelled
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/paymentCompleted-constant.html b/doc/util_result_util/paymentCompleted-constant.html index 9e7c5356..204fdeab 100644 --- a/doc/util_result_util/paymentCompleted-constant.html +++ b/doc/util_result_util/paymentCompleted-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            paymentCompleted
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/paymentCreated-constant.html b/doc/util_result_util/paymentCreated-constant.html index 41174588..b1af7cb6 100644 --- a/doc/util_result_util/paymentCreated-constant.html +++ b/doc/util_result_util/paymentCreated-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            paymentCreated
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/tokenizationCompleted-constant.html b/doc/util_result_util/tokenizationCompleted-constant.html index 3358a0ce..85fe93d4 100644 --- a/doc/util_result_util/tokenizationCompleted-constant.html +++ b/doc/util_result_util/tokenizationCompleted-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            tokenizationCompleted
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/tokenizationFailure-constant.html b/doc/util_result_util/tokenizationFailure-constant.html index 95048bb5..b6024adf 100644 --- a/doc/util_result_util/tokenizationFailure-constant.html +++ b/doc/util_result_util/tokenizationFailure-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            tokenizationFailure
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/type-constant.html b/doc/util_result_util/type-constant.html index 4efc5809..7c1bc7c2 100644 --- a/doc/util_result_util/type-constant.html +++ b/doc/util_result_util/type-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            type
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/unknownResult-constant.html b/doc/util_result_util/unknownResult-constant.html index f4d8dec4..203c9ab7 100644 --- a/doc/util_result_util/unknownResult-constant.html +++ b/doc/util_result_util/unknownResult-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            unknownResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/util_result_util-library-sidebar.html b/doc/util_result_util/util_result_util-library-sidebar.html index e20f91de..7b848634 100644 --- a/doc/util_result_util/util_result_util-library-sidebar.html +++ b/doc/util_result_util/util_result_util-library-sidebar.html @@ -3,7 +3,7 @@ -
                                                                                                                          49. Constants
                                                                                                                          50. +
                                                                                                                          51. Constants
                                                                                                                          52. configurationSuccess
                                                                                                                          53. methodCallError
                                                                                                                          54. moduleClosed
                                                                                                                          55. @@ -18,7 +18,7 @@
                                                                                                                          56. value
                                                                                                                          57. -
                                                                                                                          58. Functions
                                                                                                                          59. +
                                                                                                                          60. Functions
                                                                                                                          61. mapResult
                                                                                                                          62. diff --git a/doc/util_result_util/util_result_util-library.html b/doc/util_result_util/util_result_util-library.html index 60421523..eb082a65 100644 --- a/doc/util_result_util/util_result_util-library.html +++ b/doc/util_result_util/util_result_util-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                            New URL

                                                                                                                            +

                                                                                                                            New URL

                                                                                                                            \ No newline at end of file diff --git a/doc/util_result_util/validationError-constant.html b/doc/util_result_util/validationError-constant.html index e9b83daa..7fb20bb3 100644 --- a/doc/util_result_util/validationError-constant.html +++ b/doc/util_result_util/validationError-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            validationError
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_result_util/value-constant.html b/doc/util_result_util/value-constant.html index e4aad586..e7c447bf 100644 --- a/doc/util_result_util/value-constant.html +++ b/doc/util_result_util/value-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            value
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/aliases-constant.html b/doc/util_screenless_result_util/aliases-constant.html index fb5c113b..d668191d 100644 --- a/doc/util_screenless_result_util/aliases-constant.html +++ b/doc/util_screenless_result_util/aliases-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            aliases
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/ambiguousAlias-constant.html b/doc/util_screenless_result_util/ambiguousAlias-constant.html index 96e29ea2..27b18d36 100644 --- a/doc/util_screenless_result_util/ambiguousAlias-constant.html +++ b/doc/util_screenless_result_util/ambiguousAlias-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            ambiguousAlias
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/configuredPaymentFailed-constant.html b/doc/util_screenless_result_util/configuredPaymentFailed-constant.html index b21e468d..c70bbf49 100644 --- a/doc/util_screenless_result_util/configuredPaymentFailed-constant.html +++ b/doc/util_screenless_result_util/configuredPaymentFailed-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            configuredPaymentFailed
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/error-constant.html b/doc/util_screenless_result_util/error-constant.html index 6bd6d00b..9a629609 100644 --- a/doc/util_screenless_result_util/error-constant.html +++ b/doc/util_screenless_result_util/error-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            error
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/index.html b/doc/util_screenless_result_util/index.html index 4c9c02dc..97266f4b 100644 --- a/doc/util_screenless_result_util/index.html +++ b/doc/util_screenless_result_util/index.html @@ -31,17 +31,14 @@ -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Functions
                                                                                                                            flutter_tpay package
                                                                                                                            1. Libraries
                                                                                                                            2. -
                                                                                                                            3. model/apple_pay_configuration
                                                                                                                            4. -
                                                                                                                            5. model/certificate_pinning_configuration
                                                                                                                            6. -
                                                                                                                            7. model/google_pay_configuration
                                                                                                                            8. -
                                                                                                                            9. model/language/language
                                                                                                                            10. -
                                                                                                                            11. model/language/languages
                                                                                                                            12. -
                                                                                                                            13. model/language/localized_string
                                                                                                                            14. -
                                                                                                                            15. model/merchant/merchant
                                                                                                                            16. -
                                                                                                                            17. model/merchant/merchant_authorization
                                                                                                                            18. -
                                                                                                                            19. model/merchant/merchant_details
                                                                                                                            20. -
                                                                                                                            21. model/payer/payer
                                                                                                                            22. -
                                                                                                                            23. model/payer/payer_address
                                                                                                                            24. -
                                                                                                                            25. model/payer/payer_context
                                                                                                                            26. -
                                                                                                                            27. model/paymentChannel/payment_channel
                                                                                                                            28. -
                                                                                                                            29. model/paymentChannel/payment_constraint
                                                                                                                            30. -
                                                                                                                            31. model/paymentChannel/payment_group
                                                                                                                            32. -
                                                                                                                            33. model/paymentMethod/automatic_payment_methods
                                                                                                                            34. -
                                                                                                                            35. model/paymentMethod/blik_alias
                                                                                                                            36. -
                                                                                                                            37. model/paymentMethod/credit_card_brand
                                                                                                                            38. -
                                                                                                                            39. model/paymentMethod/digital_wallet
                                                                                                                            40. -
                                                                                                                            41. model/paymentMethod/installment_payment
                                                                                                                            42. -
                                                                                                                            43. model/paymentMethod/payment_method
                                                                                                                            44. -
                                                                                                                            45. model/paymentMethod/payment_methods
                                                                                                                            46. -
                                                                                                                            47. model/paymentMethod/tokenized_card
                                                                                                                            48. -
                                                                                                                            49. model/result/google_pay_configure_result
                                                                                                                            50. -
                                                                                                                            51. model/result/google_pay_open_result
                                                                                                                            52. -
                                                                                                                            53. model/result/payment_channels_result
                                                                                                                            54. -
                                                                                                                            55. model/result/result
                                                                                                                            56. -
                                                                                                                            57. model/result/screenless_result
                                                                                                                            58. -
                                                                                                                            59. model/screenless/ambiguous_alias
                                                                                                                            60. -
                                                                                                                            61. model/screenless/ambiguous_blik_payment
                                                                                                                            62. -
                                                                                                                            63. model/screenless/apple_pay_payment
                                                                                                                            64. -
                                                                                                                            65. model/screenless/blik_payment
                                                                                                                            66. -
                                                                                                                            67. model/screenless/callbacks
                                                                                                                            68. -
                                                                                                                            69. model/screenless/credit_card
                                                                                                                            70. -
                                                                                                                            71. model/screenless/credit_card_config
                                                                                                                            72. -
                                                                                                                            73. model/screenless/credit_card_payment
                                                                                                                            74. -
                                                                                                                            75. model/screenless/expiration_date
                                                                                                                            76. -
                                                                                                                            77. model/screenless/google_pay_environment
                                                                                                                            78. -
                                                                                                                            79. model/screenless/google_pay_payment
                                                                                                                            80. -
                                                                                                                            81. model/screenless/google_pay_utils_configuration
                                                                                                                            82. -
                                                                                                                            83. model/screenless/notifications
                                                                                                                            84. -
                                                                                                                            85. model/screenless/pay_po_payment
                                                                                                                            86. -
                                                                                                                            87. model/screenless/payment_details
                                                                                                                            88. -
                                                                                                                            89. model/screenless/raty_pekao_payment
                                                                                                                            90. -
                                                                                                                            91. model/screenless/recursive
                                                                                                                            92. -
                                                                                                                            93. model/screenless/redirects
                                                                                                                            94. -
                                                                                                                            95. model/screenless/screenless_payment
                                                                                                                            96. -
                                                                                                                            97. model/screenless/transfer_method
                                                                                                                            98. -
                                                                                                                            99. model/screenless/transfer_payment
                                                                                                                            100. -
                                                                                                                            101. model/tokenization/tokenization
                                                                                                                            102. -
                                                                                                                            103. model/tpay_configuration
                                                                                                                            104. -
                                                                                                                            105. model/tpay_environment
                                                                                                                            106. -
                                                                                                                            107. model/transaction/single_transaction
                                                                                                                            108. -
                                                                                                                            109. model/transaction/token_payment
                                                                                                                            110. -
                                                                                                                            111. model/transaction/transaction
                                                                                                                            112. -
                                                                                                                            113. model/wallet_configuration
                                                                                                                            114. -
                                                                                                                            115. tpay_button
                                                                                                                            116. -
                                                                                                                            117. tpay_method_channel
                                                                                                                            118. -
                                                                                                                            119. tpay_platform_interface
                                                                                                                            120. -
                                                                                                                            121. util/google_pay_configuration_util
                                                                                                                            122. -
                                                                                                                            123. util/google_pay_util
                                                                                                                            124. -
                                                                                                                            125. util/payment_channels_util
                                                                                                                            126. -
                                                                                                                            127. util/result_util
                                                                                                                            128. -
                                                                                                                            129. util/screenless_result_util
                                                                                                                            130. +
                                                                                                                            131. model/apple_pay_configuration
                                                                                                                            132. +
                                                                                                                            133. model/certificate_pinning_configuration
                                                                                                                            134. +
                                                                                                                            135. model/google_pay_configuration
                                                                                                                            136. +
                                                                                                                            137. model/language/language
                                                                                                                            138. +
                                                                                                                            139. model/language/languages
                                                                                                                            140. +
                                                                                                                            141. model/language/localized_string
                                                                                                                            142. +
                                                                                                                            143. model/merchant/merchant
                                                                                                                            144. +
                                                                                                                            145. model/merchant/merchant_authorization
                                                                                                                            146. +
                                                                                                                            147. model/merchant/merchant_details
                                                                                                                            148. +
                                                                                                                            149. model/payer/payer
                                                                                                                            150. +
                                                                                                                            151. model/payer/payer_address
                                                                                                                            152. +
                                                                                                                            153. model/payer/payer_context
                                                                                                                            154. +
                                                                                                                            155. model/paymentChannel/payment_channel
                                                                                                                            156. +
                                                                                                                            157. model/paymentChannel/payment_constraint
                                                                                                                            158. +
                                                                                                                            159. model/paymentChannel/payment_group
                                                                                                                            160. +
                                                                                                                            161. model/paymentMethod/automatic_payment_methods
                                                                                                                            162. +
                                                                                                                            163. model/paymentMethod/blik_alias
                                                                                                                            164. +
                                                                                                                            165. model/paymentMethod/credit_card_brand
                                                                                                                            166. +
                                                                                                                            167. model/paymentMethod/digital_wallet
                                                                                                                            168. +
                                                                                                                            169. model/paymentMethod/installment_payment
                                                                                                                            170. +
                                                                                                                            171. model/paymentMethod/payment_method
                                                                                                                            172. +
                                                                                                                            173. model/paymentMethod/payment_methods
                                                                                                                            174. +
                                                                                                                            175. model/paymentMethod/tokenized_card
                                                                                                                            176. +
                                                                                                                            177. model/result/google_pay_configure_result
                                                                                                                            178. +
                                                                                                                            179. model/result/google_pay_open_result
                                                                                                                            180. +
                                                                                                                            181. model/result/payment_channels_result
                                                                                                                            182. +
                                                                                                                            183. model/result/result
                                                                                                                            184. +
                                                                                                                            185. model/result/screenless_result
                                                                                                                            186. +
                                                                                                                            187. model/screenless/ambiguous_alias
                                                                                                                            188. +
                                                                                                                            189. model/screenless/ambiguous_blik_payment
                                                                                                                            190. +
                                                                                                                            191. model/screenless/apple_pay_payment
                                                                                                                            192. +
                                                                                                                            193. model/screenless/blik_payment
                                                                                                                            194. +
                                                                                                                            195. model/screenless/callbacks
                                                                                                                            196. +
                                                                                                                            197. model/screenless/credit_card
                                                                                                                            198. +
                                                                                                                            199. model/screenless/credit_card_config
                                                                                                                            200. +
                                                                                                                            201. model/screenless/credit_card_payment
                                                                                                                            202. +
                                                                                                                            203. model/screenless/expiration_date
                                                                                                                            204. +
                                                                                                                            205. model/screenless/google_pay_environment
                                                                                                                            206. +
                                                                                                                            207. model/screenless/google_pay_payment
                                                                                                                            208. +
                                                                                                                            209. model/screenless/google_pay_utils_configuration
                                                                                                                            210. +
                                                                                                                            211. model/screenless/notifications
                                                                                                                            212. +
                                                                                                                            213. model/screenless/pay_po_payment
                                                                                                                            214. +
                                                                                                                            215. model/screenless/payment_details
                                                                                                                            216. +
                                                                                                                            217. model/screenless/raty_pekao_payment
                                                                                                                            218. +
                                                                                                                            219. model/screenless/recursive
                                                                                                                            220. +
                                                                                                                            221. model/screenless/redirects
                                                                                                                            222. +
                                                                                                                            223. model/screenless/screenless_payment
                                                                                                                            224. +
                                                                                                                            225. model/screenless/transfer_method
                                                                                                                            226. +
                                                                                                                            227. model/screenless/transfer_payment
                                                                                                                            228. +
                                                                                                                            229. model/tokenization/tokenization
                                                                                                                            230. +
                                                                                                                            231. model/tpay_configuration
                                                                                                                            232. +
                                                                                                                            233. model/tpay_environment
                                                                                                                            234. +
                                                                                                                            235. model/transaction/single_transaction
                                                                                                                            236. +
                                                                                                                            237. model/transaction/token_payment
                                                                                                                            238. +
                                                                                                                            239. model/transaction/transaction
                                                                                                                            240. +
                                                                                                                            241. model/wallet_configuration
                                                                                                                            242. +
                                                                                                                            243. tpay_button
                                                                                                                            244. +
                                                                                                                            245. tpay_method_channel
                                                                                                                            246. +
                                                                                                                            247. tpay_platform_interface
                                                                                                                            248. +
                                                                                                                            249. util/google_pay_configuration_util
                                                                                                                            250. +
                                                                                                                            251. util/google_pay_util
                                                                                                                            252. +
                                                                                                                            253. util/payment_channels_util
                                                                                                                            254. +
                                                                                                                            255. util/result_util
                                                                                                                            256. +
                                                                                                                            257. util/screenless_result_util
                                                                                                                            @@ -342,7 +339,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/mapScreenlessResult.html b/doc/util_screenless_result_util/mapScreenlessResult.html index ca4e49e3..182718be 100644 --- a/doc/util_screenless_result_util/mapScreenlessResult.html +++ b/doc/util_screenless_result_util/mapScreenlessResult.html @@ -25,24 +25,21 @@ menu
                                                                                                                            mapScreenlessResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -126,7 +123,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/message-constant.html b/doc/util_screenless_result_util/message-constant.html index 78292b1b..c9e53f1f 100644 --- a/doc/util_screenless_result_util/message-constant.html +++ b/doc/util_screenless_result_util/message-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            message
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/methodCallError-constant.html b/doc/util_screenless_result_util/methodCallError-constant.html index 3f6d89b4..f20869b6 100644 --- a/doc/util_screenless_result_util/methodCallError-constant.html +++ b/doc/util_screenless_result_util/methodCallError-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            methodCallError
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/paid-constant.html b/doc/util_screenless_result_util/paid-constant.html index 0f176fb1..485b27c3 100644 --- a/doc/util_screenless_result_util/paid-constant.html +++ b/doc/util_screenless_result_util/paid-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            paid
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/paymentCreated-constant.html b/doc/util_screenless_result_util/paymentCreated-constant.html index 12a267a1..694d1096 100644 --- a/doc/util_screenless_result_util/paymentCreated-constant.html +++ b/doc/util_screenless_result_util/paymentCreated-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            paymentCreated
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/paymentUrl-constant.html b/doc/util_screenless_result_util/paymentUrl-constant.html index f173056b..f034e271 100644 --- a/doc/util_screenless_result_util/paymentUrl-constant.html +++ b/doc/util_screenless_result_util/paymentUrl-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            paymentUrl
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/transactionId-constant.html b/doc/util_screenless_result_util/transactionId-constant.html index e0b5f4b3..53d6eada 100644 --- a/doc/util_screenless_result_util/transactionId-constant.html +++ b/doc/util_screenless_result_util/transactionId-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            transactionId
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/type-constant.html b/doc/util_screenless_result_util/type-constant.html index e1d8c612..6e22dc86 100644 --- a/doc/util_screenless_result_util/type-constant.html +++ b/doc/util_screenless_result_util/type-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            type
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/unknownScreenlessResult-constant.html b/doc/util_screenless_result_util/unknownScreenlessResult-constant.html index 944f04a1..cfcdb5dd 100644 --- a/doc/util_screenless_result_util/unknownScreenlessResult-constant.html +++ b/doc/util_screenless_result_util/unknownScreenlessResult-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            unknownScreenlessResult
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.8
                                                                                                                            diff --git a/doc/util_screenless_result_util/util_screenless_result_util-library-sidebar.html b/doc/util_screenless_result_util/util_screenless_result_util-library-sidebar.html index b15f9c03..688cd768 100644 --- a/doc/util_screenless_result_util/util_screenless_result_util-library-sidebar.html +++ b/doc/util_screenless_result_util/util_screenless_result_util-library-sidebar.html @@ -3,7 +3,7 @@ -
                                                                                                                          63. Constants
                                                                                                                          64. +
                                                                                                                          65. Constants
                                                                                                                          66. aliases
                                                                                                                          67. ambiguousAlias
                                                                                                                          68. configuredPaymentFailed
                                                                                                                          69. @@ -19,7 +19,7 @@
                                                                                                                          70. validationError
                                                                                                                          71. -
                                                                                                                          72. Functions
                                                                                                                          73. +
                                                                                                                          74. Functions
                                                                                                                          75. mapScreenlessResult
                                                                                                                          76. diff --git a/doc/util_screenless_result_util/util_screenless_result_util-library.html b/doc/util_screenless_result_util/util_screenless_result_util-library.html index 75e2def2..9c4a0f62 100644 --- a/doc/util_screenless_result_util/util_screenless_result_util-library.html +++ b/doc/util_screenless_result_util/util_screenless_result_util-library.html @@ -1,10 +1,10 @@ - - + + -

                                                                                                                            New URL

                                                                                                                            +

                                                                                                                            New URL

                                                                                                                            \ No newline at end of file diff --git a/doc/util_screenless_result_util/validationError-constant.html b/doc/util_screenless_result_util/validationError-constant.html index a232fce0..dd86c5ec 100644 --- a/doc/util_screenless_result_util/validationError-constant.html +++ b/doc/util_screenless_result_util/validationError-constant.html @@ -25,24 +25,21 @@ menu
                                                                                                                            validationError
                                                                                                                            -
                                                                                                                            - -
                                                                                                                            +
                                                                                                                            Implementation @@ -95,7 +92,7 @@
                                                                                                                            screenless_result_util library