diff --git a/doc/__404error.html b/doc/__404error.html index 2a6bf641..a85eaabe 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..eb603dd2 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 @@ @@ -94,7 +91,7 @@
ApplePayConfiguration class
flutter_tpay - 1.2.1 + 1.2.6
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/ApplePayConfiguration.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/ApplePayConfiguration.html index 1be9ce01..d5014cd1 100644 --- a/doc/model_apple_pay_configuration/ApplePayConfiguration/ApplePayConfiguration.html +++ b/doc/model_apple_pay_configuration/ApplePayConfiguration/ApplePayConfiguration.html @@ -4,8 +4,8 @@ - - ApplePayConfiguration constructor - ApplePayConfiguration - apple_pay_configuration library - Dart API + + ApplePayConfiguration.new constructor - ApplePayConfiguration - apple_pay_configuration library - Dart API @@ -25,25 +25,22 @@ menu -
ApplePayConfiguration
+
ApplePayConfiguration.new
-
- -
+
Implementation
ApplePayConfiguration class
@@ -95,7 +92,7 @@
ApplePayConfiguration class
flutter_tpay - 1.2.1 + 1.2.6
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/countryCode.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/countryCode.html index 4d4a3a85..f921b6e0 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.6
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/merchantIdentifier.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/merchantIdentifier.html index f0b7d373..af604ceb 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.6
diff --git a/doc/model_apple_pay_configuration/ApplePayConfiguration/toJson.html b/doc/model_apple_pay_configuration/ApplePayConfiguration/toJson.html index c4c46214..1ecf8dd8 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.6
diff --git a/doc/model_apple_pay_configuration/index.html b/doc/model_apple_pay_configuration/index.html index 08d60a81..4cda8ed2 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.6
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..4388641c 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

      Constructors

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

      Operators

      @@ -257,7 +254,7 @@
      certificate_pinning_configuration library
      flutter_tpay - 1.2.1 + 1.2.6
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.fromJson.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.fromJson.html index 09fc48ea..bb329329 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.6
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/CertificatePinningConfiguration.html index e009168f..25a7f7aa 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.6
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/pinnedDomain.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/pinnedDomain.html index 054d45b7..a41f7be7 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.6
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/publicKeyHash.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/publicKeyHash.html index 6171686e..06161ca4 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.6
      diff --git a/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/toJson.html b/doc/model_certificate_pinning_configuration/CertificatePinningConfiguration/toJson.html index c15cfc92..90c6c5bc 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.6
      diff --git a/doc/model_certificate_pinning_configuration/index.html b/doc/model_certificate_pinning_configuration/index.html index ac844ca2..efbe1309 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.6
      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..996b0816 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

          Constructors

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

          Operators

          @@ -244,7 +241,7 @@
          google_pay_configuration library
          flutter_tpay - 1.2.1 + 1.2.6
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.fromJson.html b/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.fromJson.html index a41bde54..b17fccf9 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.6
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.html b/doc/model_google_pay_configuration/GooglePayConfiguration/GooglePayConfiguration.html index f505c876..484f84a8 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.6
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/merchantId.html b/doc/model_google_pay_configuration/GooglePayConfiguration/merchantId.html index 35de0adc..b181930e 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.6
          diff --git a/doc/model_google_pay_configuration/GooglePayConfiguration/toJson.html b/doc/model_google_pay_configuration/GooglePayConfiguration/toJson.html index 9755711d..83d81b05 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.6
          diff --git a/doc/model_google_pay_configuration/index.html b/doc/model_google_pay_configuration/index.html index fad873ad..dd08cba7 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.6
          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..d886ecea 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.6
            diff --git a/doc/model_language_language/Language/values-constant.html b/doc/model_language_language/Language/values-constant.html index 2f9a5d5b..0bfe1a70 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.6
            diff --git a/doc/model_language_language/index.html b/doc/model_language_language/index.html index 7a55c2d1..f1c17317 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.6
            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..ee1dd711 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

                Constructors

                -
                - Languages({required Language preferredLanguage, required List<Language> supportedLanguages}) +
                + Languages.new({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.6
                diff --git a/doc/model_language_languages/Languages/Languages.fromJson.html b/doc/model_language_languages/Languages/Languages.fromJson.html index 15cc1f81..6caa75fb 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.6
                diff --git a/doc/model_language_languages/Languages/Languages.html b/doc/model_language_languages/Languages/Languages.html index 2c91cd9e..c99f4d58 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.6
                diff --git a/doc/model_language_languages/Languages/preferredLanguage.html b/doc/model_language_languages/Languages/preferredLanguage.html index 9b3675e0..ef3cacd9 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.6
                diff --git a/doc/model_language_languages/Languages/supportedLanguages.html b/doc/model_language_languages/Languages/supportedLanguages.html index 181cebaf..277f4374 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.6
                diff --git a/doc/model_language_languages/Languages/toJson.html b/doc/model_language_languages/Languages/toJson.html index 92056414..7306c6b3 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.6
                diff --git a/doc/model_language_languages/index.html b/doc/model_language_languages/index.html index 52485680..e8917e26 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.6
                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..a82466ab 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

                    Constructors

                    -
                    - LocalizedString({required Language language, required String value}) +
                    + LocalizedString.new({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.6
                    diff --git a/doc/model_language_localized_string/LocalizedString/LocalizedString.fromJson.html b/doc/model_language_localized_string/LocalizedString/LocalizedString.fromJson.html index 775fda6f..68f1f7af 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.6
                    diff --git a/doc/model_language_localized_string/LocalizedString/LocalizedString.html b/doc/model_language_localized_string/LocalizedString/LocalizedString.html index e90301be..29b7e3ac 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.6
                    diff --git a/doc/model_language_localized_string/LocalizedString/language.html b/doc/model_language_localized_string/LocalizedString/language.html index b938e840..21e8572d 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.6
                    diff --git a/doc/model_language_localized_string/LocalizedString/toJson.html b/doc/model_language_localized_string/LocalizedString/toJson.html index ff90d04c..0fe47378 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.6
                    diff --git a/doc/model_language_localized_string/LocalizedString/value.html b/doc/model_language_localized_string/LocalizedString/value.html index c8705b60..37ed66d2 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.6
                    diff --git a/doc/model_language_localized_string/index.html b/doc/model_language_localized_string/index.html index 91abf624..02dd3052 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.6
                    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..edf98b8c 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

                        Constructors

                        -
                        - Merchant({required MerchantAuthorization authorization, required TpayEnvironment environment, required CertificatePinningConfiguration certificatePinningConfiguration, required String blikAliasToRegister, required WalletConfiguration? walletConfiguration}) +
                        + Merchant.new({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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/Merchant.fromJson.html b/doc/model_merchant_merchant/Merchant/Merchant.fromJson.html index ecdbbc8c..00fd57f1 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/Merchant.html b/doc/model_merchant_merchant/Merchant/Merchant.html index 5eda3136..282fa289 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/authorization.html b/doc/model_merchant_merchant/Merchant/authorization.html index aea9ded5..d10a9ab5 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/blikAliasToRegister.html b/doc/model_merchant_merchant/Merchant/blikAliasToRegister.html index 0b4e98e9..e165d401 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/certificatePinningConfiguration.html b/doc/model_merchant_merchant/Merchant/certificatePinningConfiguration.html index fd1f2183..6b2b6de3 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/environment.html b/doc/model_merchant_merchant/Merchant/environment.html index 1dccb26b..fc37ea78 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/toJson.html b/doc/model_merchant_merchant/Merchant/toJson.html index 536d8fb0..d7e7ba05 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.6
                        diff --git a/doc/model_merchant_merchant/Merchant/walletConfiguration.html b/doc/model_merchant_merchant/Merchant/walletConfiguration.html index dae47d83..8fa33ee2 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.6
                        diff --git a/doc/model_merchant_merchant/index.html b/doc/model_merchant_merchant/index.html index 6af95a0f..dee68a2f 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.6
                        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..e3caf543 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

                            Constructors

                            -
                            - MerchantAuthorization({required String clientId, required String clientSecret}) +
                            + MerchantAuthorization.new({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.6
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.fromJson.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.fromJson.html index 1a967022..ffd89617 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.6
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/MerchantAuthorization.html index 2e3e317c..ff1b7c4e 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.6
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientId.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientId.html index a2d98558..c4965fd6 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.6
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientSecret.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/clientSecret.html index d862750e..369c8c93 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.6
                            diff --git a/doc/model_merchant_merchant_authorization/MerchantAuthorization/toJson.html b/doc/model_merchant_merchant_authorization/MerchantAuthorization/toJson.html index 5f198ba2..6b591a6e 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.6
                            diff --git a/doc/model_merchant_merchant_authorization/index.html b/doc/model_merchant_merchant_authorization/index.html index 5518791b..e5875d14 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.6
                            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..2c91eab3 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

                                Constructors

                                -
                                - MerchantDetails({required List<LocalizedString> merchantDisplayName, required List<LocalizedString> merchantHeadquarters, required List<LocalizedString> regulations}) +
                                + MerchantDetails.new({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.6
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.fromJson.html b/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.fromJson.html index 621db77c..9a48064b 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.6
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.html b/doc/model_merchant_merchant_details/MerchantDetails/MerchantDetails.html index 6e31e433..f469a077 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.6
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/merchantDisplayName.html b/doc/model_merchant_merchant_details/MerchantDetails/merchantDisplayName.html index e472f6da..786d6ecc 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.6
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/merchantHeadquarters.html b/doc/model_merchant_merchant_details/MerchantDetails/merchantHeadquarters.html index 19d608ad..99308e48 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.6
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/regulations.html b/doc/model_merchant_merchant_details/MerchantDetails/regulations.html index 6a184193..3199f29f 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.6
                                diff --git a/doc/model_merchant_merchant_details/MerchantDetails/toJson.html b/doc/model_merchant_merchant_details/MerchantDetails/toJson.html index 16243414..b79afa2b 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.6
                                diff --git a/doc/model_merchant_merchant_details/index.html b/doc/model_merchant_merchant_details/index.html index 08e0fca0..bfa19ff5 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.6
                                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..ef3e9c30 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

                                    Constructors

                                    -
                                    - Payer({required String name, required String email, required String? phone, required PayerAddress? address}) +
                                    + Payer.new({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.6
                                    diff --git a/doc/model_payer_payer/Payer/Payer.fromJson.html b/doc/model_payer_payer/Payer/Payer.fromJson.html index 548f4796..e3a1f4d2 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.6
                                    diff --git a/doc/model_payer_payer/Payer/Payer.html b/doc/model_payer_payer/Payer/Payer.html index 8cf5c5da..88f353a7 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.6
                                    diff --git a/doc/model_payer_payer/Payer/address.html b/doc/model_payer_payer/Payer/address.html index 029407ad..ee0bc4a7 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.6
                                    diff --git a/doc/model_payer_payer/Payer/email.html b/doc/model_payer_payer/Payer/email.html index 2afe919c..89dbdbae 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.6
                                    diff --git a/doc/model_payer_payer/Payer/name.html b/doc/model_payer_payer/Payer/name.html index 2428e08d..62ba124f 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.6
                                    diff --git a/doc/model_payer_payer/Payer/phone.html b/doc/model_payer_payer/Payer/phone.html index ca3f95e1..616c43a9 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.6
                                    diff --git a/doc/model_payer_payer/Payer/toJson.html b/doc/model_payer_payer/Payer/toJson.html index 28cf1390..9b5ef560 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.6
                                    diff --git a/doc/model_payer_payer/index.html b/doc/model_payer_payer/index.html index 5da6cff0..c09b6e3c 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.6
                                    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..9fb6d667 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

                                        Constructors

                                        -
                                        - PayerAddress({required String? address, required String? city, required String? countryCode, required String? postalCode}) +
                                        + PayerAddress.new({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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/PayerAddress.fromJson.html b/doc/model_payer_payer_address/PayerAddress/PayerAddress.fromJson.html index b69eb67c..cc28aa3e 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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/PayerAddress.html b/doc/model_payer_payer_address/PayerAddress/PayerAddress.html index 5c324d14..ae8542c2 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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/address.html b/doc/model_payer_payer_address/PayerAddress/address.html index c8d522f3..ef448a3b 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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/city.html b/doc/model_payer_payer_address/PayerAddress/city.html index cad6cc97..802ba940 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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/countryCode.html b/doc/model_payer_payer_address/PayerAddress/countryCode.html index 37318724..a95989dc 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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/postalCode.html b/doc/model_payer_payer_address/PayerAddress/postalCode.html index b26eba2e..30204a6e 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.6
                                        diff --git a/doc/model_payer_payer_address/PayerAddress/toJson.html b/doc/model_payer_payer_address/PayerAddress/toJson.html index eb669d32..1e6c7623 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.6
                                        diff --git a/doc/model_payer_payer_address/index.html b/doc/model_payer_payer_address/index.html index 12e23033..e11bccab 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.6
                                        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..38340737 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

                                            Constructors

                                            -
                                            - PayerContext({required Payer? payer, required AutomaticPaymentMethods? automaticPaymentMethods}) +
                                            + PayerContext.new({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.6
                                            diff --git a/doc/model_payer_payer_context/PayerContext/PayerContext.fromJson.html b/doc/model_payer_payer_context/PayerContext/PayerContext.fromJson.html index ce1bacd8..4b83e33a 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.6
                                            diff --git a/doc/model_payer_payer_context/PayerContext/PayerContext.html b/doc/model_payer_payer_context/PayerContext/PayerContext.html index b59a4aeb..e196ccdc 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.6
                                            diff --git a/doc/model_payer_payer_context/PayerContext/automaticPaymentMethods.html b/doc/model_payer_payer_context/PayerContext/automaticPaymentMethods.html index 2b9b17cb..974f9e4f 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.6
                                            diff --git a/doc/model_payer_payer_context/PayerContext/payer.html b/doc/model_payer_payer_context/PayerContext/payer.html index 65b68919..a6063690 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.6
                                            diff --git a/doc/model_payer_payer_context/PayerContext/toJson.html b/doc/model_payer_payer_context/PayerContext/toJson.html index 9301443d..65b889f1 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.6
                                            diff --git a/doc/model_payer_payer_context/index.html b/doc/model_payer_payer_context/index.html index 85701916..a47f34e8 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.6
                                            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..dbc90cb6 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

                                                Constructors

                                                -
                                                - PaymentChannel({required String id, required String name, required String imageUrl, required List<PaymentConstraint> constraints}) +
                                                + PaymentChannel.new({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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.fromJson.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.fromJson.html index 99d6850e..834653d4 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/PaymentChannel.html index c3ba7b51..6d3dba5c 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/constraints.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/constraints.html index d472c02f..4cb95a22 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/id.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/id.html index 9f1fec48..315264b3 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/imageUrl.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/imageUrl.html index 554bbfad..b28d53b2 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/name.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/name.html index ffeac451..f923c255 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/PaymentChannel/toJson.html b/doc/model_paymentChannel_payment_channel/PaymentChannel/toJson.html index d31568aa..5d1c8f5a 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.6
                                                diff --git a/doc/model_paymentChannel_payment_channel/index.html b/doc/model_paymentChannel_payment_channel/index.html index 2e977cc3..670a0294 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.6
                                                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..e2eb38f6 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}) +
                                                    + AmountPaymentConstraint.new({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.6
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/AmountPaymentConstraint.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/AmountPaymentConstraint.html index b6e96497..086aa0c1 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.6
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/maximum.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/maximum.html index 5430d50b..971746ee 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.6
                                                    diff --git a/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/minimum.html b/doc/model_paymentChannel_payment_constraint/AmountPaymentConstraint/minimum.html index 569f0bf3..5b4eb5e6 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.6
                                                    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..7f1a1038 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,8 +90,8 @@

                                                      PaymentConstraint class

                                                      Constructors

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

                                                      Operators

                                                      @@ -248,7 +245,7 @@
                                                      payment_constraint library
                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.fromJson.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.fromJson.html index 685434a9..97d51cd9 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.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/PaymentConstraint.html index 8f93cf9a..0a2764e3 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.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/toJson.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/toJson.html index 797b6857..491a32df 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.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraint/type.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraint/type.html index 02f847f6..86d5d28f 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.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraintType.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraintType.html index c3f0806d..ec5826dd 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.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/PaymentConstraintType/values-constant.html b/doc/model_paymentChannel_payment_constraint/PaymentConstraintType/values-constant.html index 05943c77..67ae5c3c 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.6
                                                      diff --git a/doc/model_paymentChannel_payment_constraint/index.html b/doc/model_paymentChannel_payment_constraint/index.html index 0e114394..12bc0f03 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.6
                                                      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..194bce86 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

                                                          Constructors

                                                          -
                                                          - PaymentGroup({required String id, required String name, required String imageUrl}) +
                                                          + PaymentGroup.new({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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.fromJson.html b/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.fromJson.html index 62f72d4c..4b0fabbf 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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.html b/doc/model_paymentChannel_payment_group/PaymentGroup/PaymentGroup.html index 2fbcd2c7..e3d7e7ae 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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/id.html b/doc/model_paymentChannel_payment_group/PaymentGroup/id.html index 009577a7..0503cdf9 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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/imageUrl.html b/doc/model_paymentChannel_payment_group/PaymentGroup/imageUrl.html index 0c794fcd..ed81e566 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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/name.html b/doc/model_paymentChannel_payment_group/PaymentGroup/name.html index 5eb47859..7839ebac 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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/PaymentGroup/toJson.html b/doc/model_paymentChannel_payment_group/PaymentGroup/toJson.html index 65a251f7..a833240c 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.6
                                                          diff --git a/doc/model_paymentChannel_payment_group/index.html b/doc/model_paymentChannel_payment_group/index.html index 346ca956..549dabba 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.6
                                                          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..078fea37 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

                                                              Constructors

                                                              -
                                                              - AutomaticPaymentMethods({required List<TokenizedCard>? tokenizedCards, required BlikAlias? blikAlias}) +
                                                              + AutomaticPaymentMethods.new({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.6
                                                              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..36246b47 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.6
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/AutomaticPaymentMethods.html index 0ce56535..e2efc5e5 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.6
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/blikAlias.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/blikAlias.html index e14ae502..32412c67 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.6
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/toJson.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/toJson.html index aa27ec3a..11a89635 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.6
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/tokenizedCards.html b/doc/model_paymentMethod_automatic_payment_methods/AutomaticPaymentMethods/tokenizedCards.html index b936ad86..acb26983 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.6
                                                              diff --git a/doc/model_paymentMethod_automatic_payment_methods/index.html b/doc/model_paymentMethod_automatic_payment_methods/index.html index 773db2cd..728d410c 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.6
                                                              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..f2d51675 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

                                                                  Constructors

                                                                  -
                                                                  - BlikAlias({required bool isRegistered, required String value, required String label}) +
                                                                  + BlikAlias.new({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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.fromJson.html b/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.fromJson.html index 0ad0863f..28eabd7c 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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.html b/doc/model_paymentMethod_blik_alias/BlikAlias/BlikAlias.html index 72284afb..4b079db4 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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/isRegistered.html b/doc/model_paymentMethod_blik_alias/BlikAlias/isRegistered.html index 636a47f5..377bfc46 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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/label.html b/doc/model_paymentMethod_blik_alias/BlikAlias/label.html index 0b6ad9b9..b945efe2 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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/toJson.html b/doc/model_paymentMethod_blik_alias/BlikAlias/toJson.html index 701ce036..af18ed6a 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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/BlikAlias/value.html b/doc/model_paymentMethod_blik_alias/BlikAlias/value.html index 6d72de83..b5f0b74e 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.6
                                                                  diff --git a/doc/model_paymentMethod_blik_alias/index.html b/doc/model_paymentMethod_blik_alias/index.html index 1ea7f4cc..bb85fb17 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.6
                                                                  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..6ba08c35 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.6
                                                                    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..72f8921a 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.6
                                                                    diff --git a/doc/model_paymentMethod_credit_card_brand/index.html b/doc/model_paymentMethod_credit_card_brand/index.html index 6e0b2bad..a3c93622 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.6
                                                                    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..6edb7f4f 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.6
                                                                      diff --git a/doc/model_paymentMethod_digital_wallet/DigitalWallet/values-constant.html b/doc/model_paymentMethod_digital_wallet/DigitalWallet/values-constant.html index 05232525..35542c10 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.6
                                                                      diff --git a/doc/model_paymentMethod_digital_wallet/index.html b/doc/model_paymentMethod_digital_wallet/index.html index ea4d7785..41ef72ee 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.6
                                                                      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..80a9149a 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.6
                                                                        diff --git a/doc/model_paymentMethod_installment_payment/InstallmentPayment/values-constant.html b/doc/model_paymentMethod_installment_payment/InstallmentPayment/values-constant.html index 42c44bcd..740123a1 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.6
                                                                        diff --git a/doc/model_paymentMethod_installment_payment/index.html b/doc/model_paymentMethod_installment_payment/index.html index ae5408cb..d2b56459 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.6
                                                                        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..4e5bde33 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.6
                                                                          diff --git a/doc/model_paymentMethod_payment_method/PaymentMethod/values-constant.html b/doc/model_paymentMethod_payment_method/PaymentMethod/values-constant.html index 266f208f..a6691f82 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.6
                                                                          diff --git a/doc/model_paymentMethod_payment_method/index.html b/doc/model_paymentMethod_payment_method/index.html index 68ac76be..27139fd7 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.6
                                                                          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..2005a2d8 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

                                                                              Constructors

                                                                              -
                                                                              - PaymentMethods({required List<PaymentMethod> methods, List<DigitalWallet>? wallets, List<InstallmentPayment>? installmentPayments}) +
                                                                              + PaymentMethods.new({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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.fromJson.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.fromJson.html index b004a9eb..abf83b64 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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/PaymentMethods.html index 97e38a03..be51e05f 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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/installmentPayments.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/installmentPayments.html index 73ff2499..78210e93 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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/methods.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/methods.html index 6f52d9fc..7004c457 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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/toJson.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/toJson.html index b1fd3a45..a9e1a814 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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/PaymentMethods/wallets.html b/doc/model_paymentMethod_payment_methods/PaymentMethods/wallets.html index 5a4d5e8c..d312eda9 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.6
                                                                              diff --git a/doc/model_paymentMethod_payment_methods/index.html b/doc/model_paymentMethod_payment_methods/index.html index 2ebd39a9..2f8f6a22 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.6
                                                                              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..3d69383e 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

                                                                                  Constructors

                                                                                  -
                                                                                  - TokenizedCard({required String token, required String cardTail, required CreditCardBrand brand}) +
                                                                                  + TokenizedCard.new({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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.fromJson.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.fromJson.html index 7ae09e34..6c97f672 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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/TokenizedCard.html index cb12800d..ac2c2b44 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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/brand.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/brand.html index feb0f349..4ce8a1ec 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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/cardTail.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/cardTail.html index 5ab039ee..707fb129 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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/toJson.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/toJson.html index 8814ee81..c93bdf60 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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/TokenizedCard/token.html b/doc/model_paymentMethod_tokenized_card/TokenizedCard/token.html index 7eb1857f..65af31e9 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.6
                                                                                  diff --git a/doc/model_paymentMethod_tokenized_card/index.html b/doc/model_paymentMethod_tokenized_card/index.html index d13bae29..59b86068 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.6
                                                                                  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..e920147a 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) +
                                                                                      + GooglePayConfigureError.new(String message)
                                                                                      @@ -213,7 +210,7 @@

                                                                                      Operators

                                                                                      @@ -226,7 +223,7 @@
                                                                                      google_pay_configure_result library
                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                      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..1a12087a 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.6
                                                                                      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..e4af741a 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.6
                                                                                      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..fd153f22 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() +
                                                                                        + GooglePayConfigureResult.new()
                                                                                        @@ -196,7 +193,7 @@

                                                                                        Operators

                                                                                        @@ -209,7 +206,7 @@
                                                                                        google_pay_configure_result library
                                                                                        flutter_tpay - 1.2.1 + 1.2.6
                                                                                        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..d32f8176 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.6
                                                                                        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..83cbd521 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() +
                                                                                          + GooglePayConfigureSuccess.new()
                                                                                          @@ -198,7 +195,7 @@

                                                                                          Operators

                                                                                          @@ -211,7 +208,7 @@
                                                                                          google_pay_configure_result library
                                                                                          flutter_tpay - 1.2.1 + 1.2.6
                                                                                          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..34fa32b7 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.6
                                                                                          diff --git a/doc/model_result_google_pay_configure_result/index.html b/doc/model_result_google_pay_configure_result/index.html index 2d8247dc..166e728d 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.6
                                                                                          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..84adeb9c 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() +
                                                                                              + GooglePayOpenCancelled.new()
                                                                                              @@ -199,7 +196,7 @@

                                                                                              Operators

                                                                                              @@ -212,7 +209,7 @@
                                                                                              google_pay_open_result library
                                                                                              flutter_tpay - 1.2.1 + 1.2.6
                                                                                              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..8a257c98 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.6
                                                                                              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..e4f5536b 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() +
                                                                                                + GooglePayOpenNotConfigured.new()
                                                                                                @@ -199,7 +196,7 @@

                                                                                                Operators

                                                                                                @@ -212,7 +209,7 @@
                                                                                                google_pay_open_result library
                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                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..2285459d 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.6
                                                                                                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..f1133e9e 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() +
                                                                                                  + GooglePayOpenResult.new()
                                                                                                  @@ -198,7 +195,7 @@

                                                                                                  Operators

                                                                                                  @@ -211,7 +208,7 @@
                                                                                                  google_pay_open_result library
                                                                                                  flutter_tpay - 1.2.1 + 1.2.6
                                                                                                  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..d110e770 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.6
                                                                                                  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..52a89e81 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}) +
                                                                                                    + GooglePayOpenSuccess.new({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.6
                                                                                                    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..1ce3cdc9 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.6
                                                                                                    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..eb459100 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.6
                                                                                                    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..b6d3de71 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.6
                                                                                                    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..a81e0bed 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.6
                                                                                                    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..61c633cd 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.6
                                                                                                    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..36e8ec5b 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() +
                                                                                                      + GooglePayOpenUnknownError.new()
                                                                                                      @@ -199,7 +196,7 @@

                                                                                                      Operators

                                                                                                      @@ -212,7 +209,7 @@
                                                                                                      google_pay_open_result library
                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                      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..7dc0f54c 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.6
                                                                                                      diff --git a/doc/model_result_google_pay_open_result/index.html b/doc/model_result_google_pay_open_result/index.html index 41c83bd3..511a11c4 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.6
                                                                                                      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..db362f1d 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}) +
                                                                                                          + PaymentChannelsError.new({required String message})
                                                                                                          @@ -213,7 +210,7 @@

                                                                                                          Operators

                                                                                                          @@ -226,7 +223,7 @@
                                                                                                          payment_channels_result library
                                                                                                          flutter_tpay - 1.2.1 + 1.2.6
                                                                                                          diff --git a/doc/model_result_payment_channels_result/PaymentChannelsError/PaymentChannelsError.html b/doc/model_result_payment_channels_result/PaymentChannelsError/PaymentChannelsError.html index 8ca8861d..0a3c4602 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.6
                                                                                                          diff --git a/doc/model_result_payment_channels_result/PaymentChannelsError/message.html b/doc/model_result_payment_channels_result/PaymentChannelsError/message.html index 911f3ec4..370d26ee 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.6
                                                                                                          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..0abf3b12 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() +
                                                                                                            + PaymentChannelsResult.new()
                                                                                                            @@ -196,7 +193,7 @@

                                                                                                            Operators

                                                                                                            @@ -209,7 +206,7 @@
                                                                                                            payment_channels_result library
                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                            diff --git a/doc/model_result_payment_channels_result/PaymentChannelsResult/PaymentChannelsResult.html b/doc/model_result_payment_channels_result/PaymentChannelsResult/PaymentChannelsResult.html index 5ea7d746..31944913 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.6
                                                                                                            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..13847248 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

                                                                                                              Constructors

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

                                                                                                              Operators

                                                                                                              @@ -252,7 +249,7 @@
                                                                                                              payment_channels_result library
                                                                                                              flutter_tpay - 1.2.1 + 1.2.6
                                                                                                              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..13d2eacb 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.6
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/PaymentChannelsSuccess.html index 2f247c3e..d12251a0 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.6
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/channels.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/channels.html index 05371746..599c2117 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.6
                                                                                                              diff --git a/doc/model_result_payment_channels_result/PaymentChannelsSuccess/toJson.html b/doc/model_result_payment_channels_result/PaymentChannelsSuccess/toJson.html index 8590d09f..d47e5472 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.6
                                                                                                              diff --git a/doc/model_result_payment_channels_result/index.html b/doc/model_result_payment_channels_result/index.html index 58bb6fbc..1be1bd90 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.6
                                                                                                              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..50777937 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() +
                                                                                                                  + ConfigurationSuccess.new()
                                                                                                                  @@ -198,7 +195,7 @@

                                                                                                                  Operators

                                                                                                                  @@ -211,7 +208,7 @@
                                                                                                                  result library
                                                                                                                  flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                  diff --git a/doc/model_result_result/ConfigurationSuccess/ConfigurationSuccess.html b/doc/model_result_result/ConfigurationSuccess/ConfigurationSuccess.html index a9521b96..a978d8d9 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.6
                                                                                                                  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..14972b51 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) +
                                                                                                                    + MethodCallError.new(String message)
                                                                                                                    @@ -210,7 +207,7 @@

                                                                                                                    Operators

                                                                                                                    @@ -223,7 +220,7 @@
                                                                                                                    result library
                                                                                                                    flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                    diff --git a/doc/model_result_result/MethodCallError/MethodCallError.html b/doc/model_result_result/MethodCallError/MethodCallError.html index c1c62fe2..b47e5d47 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.6
                                                                                                                    diff --git a/doc/model_result_result/MethodCallError/message.html b/doc/model_result_result/MethodCallError/message.html index c5186fb3..94650396 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.6
                                                                                                                    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..359e79a3 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() +
                                                                                                                      + ModuleClosed.new()
                                                                                                                      @@ -199,7 +196,7 @@

                                                                                                                      Operators

                                                                                                                      @@ -212,7 +209,7 @@
                                                                                                                      result library
                                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                      diff --git a/doc/model_result_result/ModuleClosed/ModuleClosed.html b/doc/model_result_result/ModuleClosed/ModuleClosed.html index 81ee610b..da4ae761 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.6
                                                                                                                      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..68202331 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) +
                                                                                                                        + PaymentCancelled.new(String? transactionId)
                                                                                                                        @@ -211,7 +208,7 @@

                                                                                                                        Operators

                                                                                                                        @@ -224,7 +221,7 @@
                                                                                                                        result library
                                                                                                                        flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                        diff --git a/doc/model_result_result/PaymentCancelled/PaymentCancelled.html b/doc/model_result_result/PaymentCancelled/PaymentCancelled.html index 330833a5..b704d808 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.6
                                                                                                                        diff --git a/doc/model_result_result/PaymentCancelled/transactionId.html b/doc/model_result_result/PaymentCancelled/transactionId.html index 6c28a6a0..59a9c02b 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.6
                                                                                                                        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..e4e963e3 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) +
                                                                                                                          + PaymentCompleted.new(String? transactionId)
                                                                                                                          @@ -211,7 +208,7 @@

                                                                                                                          Operators

                                                                                                                          @@ -224,7 +221,7 @@
                                                                                                                          result library
                                                                                                                          flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                          diff --git a/doc/model_result_result/PaymentCompleted/PaymentCompleted.html b/doc/model_result_result/PaymentCompleted/PaymentCompleted.html index d6a0bd77..f7bb8a78 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.6
                                                                                                                          diff --git a/doc/model_result_result/PaymentCompleted/transactionId.html b/doc/model_result_result/PaymentCompleted/transactionId.html index 4f6e22d5..6ff375f4 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.6
                                                                                                                          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..103feddc 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) +
                                                                                                                            + PaymentCreated.new(String? transactionId)
                                                                                                                            @@ -210,7 +207,7 @@

                                                                                                                            Operators

                                                                                                                            @@ -223,7 +220,7 @@
                                                                                                                            result library
                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                            diff --git a/doc/model_result_result/PaymentCreated/PaymentCreated.html b/doc/model_result_result/PaymentCreated/PaymentCreated.html index f8c99185..30a06eb0 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.6
                                                                                                                            diff --git a/doc/model_result_result/PaymentCreated/transactionId.html b/doc/model_result_result/PaymentCreated/transactionId.html index 525ba1be..58fc3ac8 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.6
                                                                                                                            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..be5b6175 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() +
                                                                                                                              + Result.new()
                                                                                                                              @@ -203,7 +200,7 @@

                                                                                                                              Operators

                                                                                                                              @@ -216,7 +213,7 @@
                                                                                                                              result library
                                                                                                                              flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                              diff --git a/doc/model_result_result/Result/Result.html b/doc/model_result_result/Result/Result.html index c0fe3633..558bbbd0 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.6
                                                                                                                              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..2cc00460 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() +
                                                                                                                                + TokenizationCompleted.new()
                                                                                                                                @@ -199,7 +196,7 @@

                                                                                                                                Operators

                                                                                                                                @@ -212,7 +209,7 @@
                                                                                                                                result library
                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                diff --git a/doc/model_result_result/TokenizationCompleted/TokenizationCompleted.html b/doc/model_result_result/TokenizationCompleted/TokenizationCompleted.html index 53ad8aff..3cdf1414 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.6
                                                                                                                                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..9f53ce74 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() +
                                                                                                                                  + TokenizationFailure.new()
                                                                                                                                  @@ -199,7 +196,7 @@

                                                                                                                                  Operators

                                                                                                                                  @@ -212,7 +209,7 @@
                                                                                                                                  result library
                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                  diff --git a/doc/model_result_result/TokenizationFailure/TokenizationFailure.html b/doc/model_result_result/TokenizationFailure/TokenizationFailure.html index 1df783a0..f5f2fede 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.6
                                                                                                                                  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..570eb5de 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) +
                                                                                                                                    + ValidationError.new(String message)
                                                                                                                                    @@ -211,7 +208,7 @@

                                                                                                                                    Operators

                                                                                                                                    @@ -224,7 +221,7 @@
                                                                                                                                    result library
                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                    diff --git a/doc/model_result_result/ValidationError/ValidationError.html b/doc/model_result_result/ValidationError/ValidationError.html index f6306eba..cdca3a96 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.6
                                                                                                                                    diff --git a/doc/model_result_result/ValidationError/message.html b/doc/model_result_result/ValidationError/message.html index e9019f06..55cb82fd 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.6
                                                                                                                                    diff --git a/doc/model_result_result/index.html b/doc/model_result_result/index.html index 419b5fcd..395ee028 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.6
                                                                                                                                    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..ec512b4b 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}) +
                                                                                                                                        + ScreenlessBlikAmbiguousAlias.new({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.6
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/ScreenlessBlikAmbiguousAlias.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/ScreenlessBlikAmbiguousAlias.html index 046f7b44..edeb1143 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.6
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/aliases.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/aliases.html index 1f92ecdf..477f5761 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.6
                                                                                                                                        diff --git a/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/transactionId.html b/doc/model_result_screenless_result/ScreenlessBlikAmbiguousAlias/transactionId.html index ffdfad38..342f9352 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.6
                                                                                                                                        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..7a208e8f 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}) +
                                                                                                                                          + ScreenlessConfiguredPaymentFailed.new({required String transactionId, String? error})
                                                                                                                                          @@ -226,7 +223,7 @@

                                                                                                                                          Operators

                                                                                                                                          @@ -239,7 +236,7 @@
                                                                                                                                          screenless_result library
                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/ScreenlessConfiguredPaymentFailed.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/ScreenlessConfiguredPaymentFailed.html index c397fcbe..0c81f434 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.6
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/error.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/error.html index db9fb19c..851ce0dd 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.6
                                                                                                                                          diff --git a/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/transactionId.html b/doc/model_result_screenless_result/ScreenlessConfiguredPaymentFailed/transactionId.html index a2fe7e05..0ad84e40 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.6
                                                                                                                                          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..c8c9b100 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}) +
                                                                                                                                            + ScreenlessMethodCallError.new({required String message})
                                                                                                                                            @@ -210,7 +207,7 @@

                                                                                                                                            Operators

                                                                                                                                            @@ -223,7 +220,7 @@
                                                                                                                                            screenless_result library
                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                            diff --git a/doc/model_result_screenless_result/ScreenlessMethodCallError/ScreenlessMethodCallError.html b/doc/model_result_screenless_result/ScreenlessMethodCallError/ScreenlessMethodCallError.html index 1a091915..f104d9d6 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.6
                                                                                                                                            diff --git a/doc/model_result_screenless_result/ScreenlessMethodCallError/message.html b/doc/model_result_screenless_result/ScreenlessMethodCallError/message.html index 1de1674d..f192a2d0 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.6
                                                                                                                                            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..adedeb95 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}) +
                                                                                                                                              + ScreenlessPaid.new({required String transactionId})
                                                                                                                                              @@ -210,7 +207,7 @@

                                                                                                                                              Operators

                                                                                                                                              @@ -223,7 +220,7 @@
                                                                                                                                              screenless_result library
                                                                                                                                              flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                              diff --git a/doc/model_result_screenless_result/ScreenlessPaid/ScreenlessPaid.html b/doc/model_result_screenless_result/ScreenlessPaid/ScreenlessPaid.html index 47231e2d..34c9be2e 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.6
                                                                                                                                              diff --git a/doc/model_result_screenless_result/ScreenlessPaid/transactionId.html b/doc/model_result_screenless_result/ScreenlessPaid/transactionId.html index ba6654c5..4a2ed3fa 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.6
                                                                                                                                              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..66073498 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}) +
                                                                                                                                                + ScreenlessPaymentCreated.new({required String transactionId, String? paymentUrl})
                                                                                                                                                @@ -227,7 +224,7 @@

                                                                                                                                                Operators

                                                                                                                                                @@ -240,7 +237,7 @@
                                                                                                                                                screenless_result library
                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated/ScreenlessPaymentCreated.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated/ScreenlessPaymentCreated.html index 7c4dc5c2..2d7aa7ba 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.6
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated/paymentUrl.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated/paymentUrl.html index 0864466b..1611f42b 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.6
                                                                                                                                                diff --git a/doc/model_result_screenless_result/ScreenlessPaymentCreated/transactionId.html b/doc/model_result_screenless_result/ScreenlessPaymentCreated/transactionId.html index ac4a1bcf..a12a09ec 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.6
                                                                                                                                                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..b4bd94a4 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) +
                                                                                                                                                  + ScreenlessPaymentError.new(String? error)
                                                                                                                                                  @@ -210,7 +207,7 @@

                                                                                                                                                  Operators

                                                                                                                                                  @@ -223,7 +220,7 @@
                                                                                                                                                  screenless_result library
                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                  diff --git a/doc/model_result_screenless_result/ScreenlessPaymentError/ScreenlessPaymentError.html b/doc/model_result_screenless_result/ScreenlessPaymentError/ScreenlessPaymentError.html index 247f6948..4432c4da 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.6
                                                                                                                                                  diff --git a/doc/model_result_screenless_result/ScreenlessPaymentError/error.html b/doc/model_result_screenless_result/ScreenlessPaymentError/error.html index 6ad07ebd..c75fd1ad 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.6
                                                                                                                                                  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..ad51c7ca 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() +
                                                                                                                                                    + ScreenlessResult.new()
                                                                                                                                                    @@ -201,7 +198,7 @@

                                                                                                                                                    Operators

                                                                                                                                                    @@ -214,7 +211,7 @@
                                                                                                                                                    screenless_result library
                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                    diff --git a/doc/model_result_screenless_result/ScreenlessResult/ScreenlessResult.html b/doc/model_result_screenless_result/ScreenlessResult/ScreenlessResult.html index 66f0269d..10ca216d 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.6
                                                                                                                                                    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..3530eb1b 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) +
                                                                                                                                                      + ScreenlessValidationError.new(String message)
                                                                                                                                                      @@ -211,7 +208,7 @@

                                                                                                                                                      Operators

                                                                                                                                                      @@ -224,7 +221,7 @@
                                                                                                                                                      screenless_result library
                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/ScreenlessValidationError/ScreenlessValidationError.html b/doc/model_result_screenless_result/ScreenlessValidationError/ScreenlessValidationError.html index 3e8ae4d7..df25d8a5 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.6
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/ScreenlessValidationError/message.html b/doc/model_result_screenless_result/ScreenlessValidationError/message.html index 662f5e8b..b99aabe1 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.6
                                                                                                                                                      diff --git a/doc/model_result_screenless_result/index.html b/doc/model_result_screenless_result/index.html index ad157db5..c9464ffc 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.6
                                                                                                                                                      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..07b6ace4 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

                                                                                                                                                          Constructors

                                                                                                                                                          -
                                                                                                                                                          - AmbiguousAlias({required String name, required String code}) +
                                                                                                                                                          + AmbiguousAlias.new({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.6
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.fromJson.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.fromJson.html index 23b285ff..06c364cd 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.6
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/AmbiguousAlias.html index 4d83ef5a..8bf23c0d 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.6
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/code.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/code.html index 8877df96..ed1a1351 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.6
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/name.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/name.html index ffac21e5..347babcf 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.6
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/AmbiguousAlias/toJson.html b/doc/model_screenless_ambiguous_alias/AmbiguousAlias/toJson.html index 99cbba52..97e7c762 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.6
                                                                                                                                                          diff --git a/doc/model_screenless_ambiguous_alias/index.html b/doc/model_screenless_ambiguous_alias/index.html index 36ae71d8..780b3001 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.6
                                                                                                                                                          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..55b620af 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

                                                                                                                                                              Constructors

                                                                                                                                                              -
                                                                                                                                                              - AmbiguousBLIKPayment({required String transactionId, required BlikAlias blikAlias, required AmbiguousAlias ambiguousAlias}) +
                                                                                                                                                              + AmbiguousBLIKPayment.new({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.6
                                                                                                                                                              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..e9691e70 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.6
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/AmbiguousBLIKPayment.html index ab011fc6..df2d2aef 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.6
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/ambiguousAlias.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/ambiguousAlias.html index d69b8130..899e78c6 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.6
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/blikAlias.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/blikAlias.html index fb5f683b..0c09044c 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.6
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/toJson.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/toJson.html index 1ff87b18..bff52f69 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.6
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/transactionId.html b/doc/model_screenless_ambiguous_blik_payment/AmbiguousBLIKPayment/transactionId.html index 9b6bd4dd..e37cbcc0 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.6
                                                                                                                                                              diff --git a/doc/model_screenless_ambiguous_blik_payment/index.html b/doc/model_screenless_ambiguous_blik_payment/index.html index 20fe2924..1808f39a 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.6
                                                                                                                                                              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..4cf2777a 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

                                                                                                                                                                  Constructors

                                                                                                                                                                  -
                                                                                                                                                                  - ApplePayPayment({required PaymentDetails paymentDetails, required Payer payer, required String applePayToken, Callbacks? callbacks}) +
                                                                                                                                                                  + ApplePayPayment.new({required PaymentDetails paymentDetails, required Payer payer, required String applePayToken, Callbacks? callbacks})
                                                                                                                                                                  @@ -273,7 +270,7 @@

                                                                                                                                                                  Operators

                                                                                                                                                                  @@ -286,7 +283,7 @@
                                                                                                                                                                  apple_pay_payment library
                                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                  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..2e3d6486 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.6
                                                                                                                                                                  diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/ApplePayPayment.html index b413fbec..7da08728 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
                                                                                                                                                                  -
                                                                                                                                                                  - -
                                                                                                                                                                  +
                                                                                                                                                                  Implementation
                                                                                                                                                                  ApplePayPayment class
                                                                                                                                                                  @@ -102,7 +99,7 @@
                                                                                                                                                                  ApplePayPayment class
                                                                                                                                                                  flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                  diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/applePayToken.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/applePayToken.html index 1867bf2d..1203bf31 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.6
                                                                                                                                                                  diff --git a/doc/model_screenless_apple_pay_payment/ApplePayPayment/toJson.html b/doc/model_screenless_apple_pay_payment/ApplePayPayment/toJson.html index 831318b4..5cc0dcd5 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.6
                                                                                                                                                                  diff --git a/doc/model_screenless_apple_pay_payment/index.html b/doc/model_screenless_apple_pay_payment/index.html index 0e951b6d..6446d2a3 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.6
                                                                                                                                                                  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..887fb912 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

                                                                                                                                                                      Constructors

                                                                                                                                                                      -
                                                                                                                                                                      - BLIKPayment({required PaymentDetails paymentDetails, required Payer payer, Callbacks? callbacks, String? code, BlikAlias? alias}) +
                                                                                                                                                                      + BLIKPayment.new({required PaymentDetails paymentDetails, required Payer payer, Callbacks? callbacks, String? code, BlikAlias? alias})
                                                                                                                                                                      @@ -289,7 +286,7 @@

                                                                                                                                                                      Operators

                                                                                                                                                                      @@ -302,7 +299,7 @@
                                                                                                                                                                      blik_payment library
                                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                      diff --git a/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.fromJson.html b/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.fromJson.html index 9f1d1baa..fc0e2a8c 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.6
                                                                                                                                                                      diff --git a/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.html b/doc/model_screenless_blik_payment/BLIKPayment/BLIKPayment.html index d92e9335..046f536c 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
                                                                                                                                                                      -
                                                                                                                                                                      - -
                                                                                                                                                                      +
                                                                                                                                                                      Implementation
                                                                                                                                                                      BLIKPayment class
                                                                                                                                                                      @@ -104,7 +101,7 @@
                                                                                                                                                                      BLIKPayment class
                                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                      diff --git a/doc/model_screenless_blik_payment/BLIKPayment/alias.html b/doc/model_screenless_blik_payment/BLIKPayment/alias.html index dd7a485a..1831898d 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.6
                                                                                                                                                                      diff --git a/doc/model_screenless_blik_payment/BLIKPayment/code.html b/doc/model_screenless_blik_payment/BLIKPayment/code.html index 2a593958..0d24194e 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.6
                                                                                                                                                                      diff --git a/doc/model_screenless_blik_payment/BLIKPayment/toJson.html b/doc/model_screenless_blik_payment/BLIKPayment/toJson.html index c3eb99e9..9de8aa54 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.6
                                                                                                                                                                      diff --git a/doc/model_screenless_blik_payment/index.html b/doc/model_screenless_blik_payment/index.html index b0f1310c..84ebc53f 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.6
                                                                                                                                                                      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..d58911a7 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

                                                                                                                                                                          Constructors

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

                                                                                                                                                                          Operators

                                                                                                                                                                          @@ -254,7 +251,7 @@
                                                                                                                                                                          callbacks library
                                                                                                                                                                          flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                          diff --git a/doc/model_screenless_callbacks/Callbacks/Callbacks.fromJson.html b/doc/model_screenless_callbacks/Callbacks/Callbacks.fromJson.html index 6f0fde37..7053d46b 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.6
                                                                                                                                                                          diff --git a/doc/model_screenless_callbacks/Callbacks/Callbacks.html b/doc/model_screenless_callbacks/Callbacks/Callbacks.html index 347df734..24100218 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.6
                                                                                                                                                                          diff --git a/doc/model_screenless_callbacks/Callbacks/notifications.html b/doc/model_screenless_callbacks/Callbacks/notifications.html index c48b4392..f8e24f5b 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.6
                                                                                                                                                                          diff --git a/doc/model_screenless_callbacks/Callbacks/redirects.html b/doc/model_screenless_callbacks/Callbacks/redirects.html index b25d74a5..e9504328 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.6
                                                                                                                                                                          diff --git a/doc/model_screenless_callbacks/Callbacks/toJson.html b/doc/model_screenless_callbacks/Callbacks/toJson.html index 9965c287..b1e419ba 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.6
                                                                                                                                                                          diff --git a/doc/model_screenless_callbacks/index.html b/doc/model_screenless_callbacks/index.html index ac9c75aa..5f63f5de 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.6
                                                                                                                                                                          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..ad13fb59 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

                                                                                                                                                                              Constructors

                                                                                                                                                                              -
                                                                                                                                                                              - CreditCard({required String cardNumber, required ExpirationDate expiryDate, required String cvv, required CreditCardConfig config}) +
                                                                                                                                                                              + CreditCard.new({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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/CreditCard.fromJson.html b/doc/model_screenless_credit_card/CreditCard/CreditCard.fromJson.html index 47dfd81a..dd778a4f 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/CreditCard.html b/doc/model_screenless_credit_card/CreditCard/CreditCard.html index 9f9263d0..088d2899 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/cardNumber.html b/doc/model_screenless_credit_card/CreditCard/cardNumber.html index 07199b95..a4da2d62 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/config.html b/doc/model_screenless_credit_card/CreditCard/config.html index 132fb14d..b308805a 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/cvv.html b/doc/model_screenless_credit_card/CreditCard/cvv.html index ee566e83..ffec2ed1 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/expiryDate.html b/doc/model_screenless_credit_card/CreditCard/expiryDate.html index 620f69fe..621a4ac5 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/CreditCard/toJson.html b/doc/model_screenless_credit_card/CreditCard/toJson.html index 98a9ae31..903b8a83 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.6
                                                                                                                                                                              diff --git a/doc/model_screenless_credit_card/index.html b/doc/model_screenless_credit_card/index.html index 29e0875f..6dae6c8c 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.6
                                                                                                                                                                              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..41e38e21 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

                                                                                                                                                                                  Constructors

                                                                                                                                                                                  -
                                                                                                                                                                                  - CreditCardConfig({required bool shouldSave, required String domain, String? rocText}) +
                                                                                                                                                                                  + CreditCardConfig.new({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.6
                                                                                                                                                                                  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..7cff01fc 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.6
                                                                                                                                                                                  diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.html b/doc/model_screenless_credit_card_config/CreditCardConfig/CreditCardConfig.html index a4e1b874..56ebb0e1 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.6
                                                                                                                                                                                  diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/domain.html b/doc/model_screenless_credit_card_config/CreditCardConfig/domain.html index cbf55762..bc0d896b 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.6
                                                                                                                                                                                  diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/rocText.html b/doc/model_screenless_credit_card_config/CreditCardConfig/rocText.html index a81190dc..1a899f56 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.6
                                                                                                                                                                                  diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/shouldSave.html b/doc/model_screenless_credit_card_config/CreditCardConfig/shouldSave.html index 0e820534..08bbaa94 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.6
                                                                                                                                                                                  diff --git a/doc/model_screenless_credit_card_config/CreditCardConfig/toJson.html b/doc/model_screenless_credit_card_config/CreditCardConfig/toJson.html index 84007c16..99f27640 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.6
                                                                                                                                                                                  diff --git a/doc/model_screenless_credit_card_config/index.html b/doc/model_screenless_credit_card_config/index.html index 22e809d1..acb8cbe5 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.6
                                                                                                                                                                                  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..8f53b070 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

                                                                                                                                                                                      Constructors

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

                                                                                                                                                                                      Operators

                                                                                                                                                                                      @@ -316,7 +313,7 @@
                                                                                                                                                                                      credit_card_payment library
                                                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                      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..8b299622 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.6
                                                                                                                                                                                      diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/CreditCardPayment.html index 74b95733..070105e8 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
                                                                                                                                                                                      -
                                                                                                                                                                                      - -
                                                                                                                                                                                      +
                                                                                                                                                                                      Implementation
                                                                                                                                                                                      CreditCardPayment class
                                                                                                                                                                                      @@ -106,7 +103,7 @@
                                                                                                                                                                                      CreditCardPayment class
                                                                                                                                                                                      flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                      diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCard.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCard.html index ca064a40..1cc4f2d1 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.6
                                                                                                                                                                                      diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCardToken.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/creditCardToken.html index fec98db4..1fde19ba 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.6
                                                                                                                                                                                      diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/recursive.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/recursive.html index 9f9e4661..bae93f7b 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.6
                                                                                                                                                                                      diff --git a/doc/model_screenless_credit_card_payment/CreditCardPayment/toJson.html b/doc/model_screenless_credit_card_payment/CreditCardPayment/toJson.html index 5c0f5ac8..4f2c767a 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.6
                                                                                                                                                                                      diff --git a/doc/model_screenless_credit_card_payment/index.html b/doc/model_screenless_credit_card_payment/index.html index 920a1ce2..14f0c826 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.6
                                                                                                                                                                                      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..e27b61f1 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

                                                                                                                                                                                          Constructors

                                                                                                                                                                                          -
                                                                                                                                                                                          - ExpirationDate({required String month, required String year}) +
                                                                                                                                                                                          + ExpirationDate.new({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.6
                                                                                                                                                                                          diff --git a/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.fromJson.html b/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.fromJson.html index e169ffe3..51ae5bad 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.6
                                                                                                                                                                                          diff --git a/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.html b/doc/model_screenless_expiration_date/ExpirationDate/ExpirationDate.html index bc8f2ab1..678af6b3 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.6
                                                                                                                                                                                          diff --git a/doc/model_screenless_expiration_date/ExpirationDate/month.html b/doc/model_screenless_expiration_date/ExpirationDate/month.html index 1c657368..22616a82 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.6
                                                                                                                                                                                          diff --git a/doc/model_screenless_expiration_date/ExpirationDate/toJson.html b/doc/model_screenless_expiration_date/ExpirationDate/toJson.html index 04212276..b7c60cfd 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.6
                                                                                                                                                                                          diff --git a/doc/model_screenless_expiration_date/ExpirationDate/year.html b/doc/model_screenless_expiration_date/ExpirationDate/year.html index 7914b4f7..3ee5ad6d 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.6
                                                                                                                                                                                          diff --git a/doc/model_screenless_expiration_date/index.html b/doc/model_screenless_expiration_date/index.html index dfc165ad..a6fcd7b8 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.6
                                                                                                                                                                                          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..88095ed2 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.6
                                                                                                                                                                                            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..a3804423 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.6
                                                                                                                                                                                            diff --git a/doc/model_screenless_google_pay_environment/index.html b/doc/model_screenless_google_pay_environment/index.html index d194bb07..88e07e36 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.6
                                                                                                                                                                                            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..806cdfae 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

                                                                                                                                                                                                Constructors

                                                                                                                                                                                                -
                                                                                                                                                                                                - GooglePayPayment({required PaymentDetails paymentDetails, required Payer payer, required String token, Callbacks? callbacks}) +
                                                                                                                                                                                                + GooglePayPayment.new({required PaymentDetails paymentDetails, required Payer payer, required String token, Callbacks? callbacks})
                                                                                                                                                                                                @@ -274,7 +271,7 @@

                                                                                                                                                                                                Operators

                                                                                                                                                                                                @@ -287,7 +284,7 @@
                                                                                                                                                                                                google_pay_payment library
                                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                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..3c048dfc 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.6
                                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/GooglePayPayment.html index 4e0cb96f..770bd698 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
                                                                                                                                                                                                -
                                                                                                                                                                                                - -
                                                                                                                                                                                                +
                                                                                                                                                                                                Implementation
                                                                                                                                                                                                GooglePayPayment class
                                                                                                                                                                                                @@ -102,7 +99,7 @@
                                                                                                                                                                                                GooglePayPayment class
                                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/toJson.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/toJson.html index 26e7127a..22a0d9a9 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.6
                                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/GooglePayPayment/token.html b/doc/model_screenless_google_pay_payment/GooglePayPayment/token.html index 487fc591..95b79233 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.6
                                                                                                                                                                                                diff --git a/doc/model_screenless_google_pay_payment/index.html b/doc/model_screenless_google_pay_payment/index.html index b646aaef..3b865644 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.6
                                                                                                                                                                                                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..04f74c3c 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

                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                    -
                                                                                                                                                                                                    - GooglePayUtilsConfiguration({required double price, required String merchantName, required String merchantId, required GooglePayEnvironment environment, int? customRequestCode}) +
                                                                                                                                                                                                    + GooglePayUtilsConfiguration.new({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.6
                                                                                                                                                                                                    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..a51550da 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.6
                                                                                                                                                                                                    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..69722bda 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.6
                                                                                                                                                                                                    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..712ac822 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.6
                                                                                                                                                                                                    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..d78a80bf 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.6
                                                                                                                                                                                                    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..8fc27cf5 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.6
                                                                                                                                                                                                    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..a8f56479 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.6
                                                                                                                                                                                                    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..409c0c3a 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.6
                                                                                                                                                                                                    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..5601f8c6 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.6
                                                                                                                                                                                                    diff --git a/doc/model_screenless_google_pay_utils_configuration/index.html b/doc/model_screenless_google_pay_utils_configuration/index.html index 2071cdc8..946f3a2b 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.6
                                                                                                                                                                                                    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..ee2ae67e 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

                                                                                                                                                                                                        Constructors

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

                                                                                                                                                                                                        Operators

                                                                                                                                                                                                        @@ -258,7 +255,7 @@
                                                                                                                                                                                                        notifications library
                                                                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/Notifications.fromJson.html b/doc/model_screenless_notifications/Notifications/Notifications.fromJson.html index fa37bafd..3bd92803 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.6
                                                                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/Notifications.html b/doc/model_screenless_notifications/Notifications/Notifications.html index 5e430b48..86548bfe 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.6
                                                                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/email.html b/doc/model_screenless_notifications/Notifications/email.html index 3aaa1de8..3990730c 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.6
                                                                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/toJson.html b/doc/model_screenless_notifications/Notifications/toJson.html index dbddd596..0fb8179d 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.6
                                                                                                                                                                                                        diff --git a/doc/model_screenless_notifications/Notifications/url.html b/doc/model_screenless_notifications/Notifications/url.html index a1c0504f..e865832b 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.6
                                                                                                                                                                                                        diff --git a/doc/model_screenless_notifications/index.html b/doc/model_screenless_notifications/index.html index f1523137..95e12440 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.6
                                                                                                                                                                                                        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..49e40ae1 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

                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - PayPoPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks}) +
                                                                                                                                                                                                            + PayPoPayment.new({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks})
                                                                                                                                                                                                            @@ -260,7 +257,7 @@

                                                                                                                                                                                                            Operators

                                                                                                                                                                                                            @@ -273,7 +270,7 @@
                                                                                                                                                                                                            pay_po_payment library
                                                                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                            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..88d87e40 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.6
                                                                                                                                                                                                            diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.html b/doc/model_screenless_pay_po_payment/PayPoPayment/PayPoPayment.html index e9da7205..5ed9eb28 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
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Implementation
                                                                                                                                                                                                            PayPoPayment class
                                                                                                                                                                                                            @@ -100,7 +97,7 @@
                                                                                                                                                                                                            PayPoPayment class
                                                                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                            diff --git a/doc/model_screenless_pay_po_payment/PayPoPayment/toJson.html b/doc/model_screenless_pay_po_payment/PayPoPayment/toJson.html index 96d8a872..45c7f6fa 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.6
                                                                                                                                                                                                            diff --git a/doc/model_screenless_pay_po_payment/index.html b/doc/model_screenless_pay_po_payment/index.html index f0d340a3..41ccc32b 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.6
                                                                                                                                                                                                            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..b00841c4 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

                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - PaymentDetails({required double amount, required String description, String? hiddenDescription, Language? language}) +
                                                                                                                                                                                                                + PaymentDetails.new({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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.fromJson.html b/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.fromJson.html index e98e577b..36d7d6f7 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.html b/doc/model_screenless_payment_details/PaymentDetails/PaymentDetails.html index 3dc0eaf1..3da482f4 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/amount.html b/doc/model_screenless_payment_details/PaymentDetails/amount.html index a54b6d1d..9abe9684 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/description.html b/doc/model_screenless_payment_details/PaymentDetails/description.html index e082dfb3..008ff17c 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/hiddenDescription.html b/doc/model_screenless_payment_details/PaymentDetails/hiddenDescription.html index e7754852..cc08e4b3 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/language.html b/doc/model_screenless_payment_details/PaymentDetails/language.html index e146ae73..4bae21ec 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/PaymentDetails/toJson.html b/doc/model_screenless_payment_details/PaymentDetails/toJson.html index 3eadbefb..b8837172 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.6
                                                                                                                                                                                                                diff --git a/doc/model_screenless_payment_details/index.html b/doc/model_screenless_payment_details/index.html index dd119f3d..b5882b8d 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.6
                                                                                                                                                                                                                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..e3417309 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

                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - RatyPekaoPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, required int channelId}) +
                                                                                                                                                                                                                    + RatyPekaoPayment.new({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, required int channelId})
                                                                                                                                                                                                                    @@ -275,7 +272,7 @@

                                                                                                                                                                                                                    Operators

                                                                                                                                                                                                                    @@ -288,7 +285,7 @@
                                                                                                                                                                                                                    raty_pekao_payment library
                                                                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                    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..0cff4fd8 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.6
                                                                                                                                                                                                                    diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/RatyPekaoPayment.html index c8e22b9a..340ada3b 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
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Implementation
                                                                                                                                                                                                                    RatyPekaoPayment class
                                                                                                                                                                                                                    @@ -102,7 +99,7 @@
                                                                                                                                                                                                                    RatyPekaoPayment class
                                                                                                                                                                                                                    flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                    diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/channelId.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/channelId.html index 8dfb3962..72ce8b79 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.6
                                                                                                                                                                                                                    diff --git a/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/toJson.html b/doc/model_screenless_raty_pekao_payment/RatyPekaoPayment/toJson.html index a208527c..33ad55fd 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.6
                                                                                                                                                                                                                    diff --git a/doc/model_screenless_raty_pekao_payment/index.html b/doc/model_screenless_raty_pekao_payment/index.html index e1d4b951..c9796697 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.6
                                                                                                                                                                                                                    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..2d659be7 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.6
                                                                                                                                                                                                                      diff --git a/doc/model_screenless_recursive/Frequency/values-constant.html b/doc/model_screenless_recursive/Frequency/values-constant.html index 9619e1bd..c5cb35d1 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.6
                                                                                                                                                                                                                      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..a324151d 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

                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - Recursive({required Frequency frequency, required int? quantity, required String endDate}) +
                                                                                                                                                                                                                        + Recursive.new({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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/Recursive/Recursive.fromJson.html b/doc/model_screenless_recursive/Recursive/Recursive.fromJson.html index 7b1ebfb3..6bc0fe88 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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/Recursive/Recursive.html b/doc/model_screenless_recursive/Recursive/Recursive.html index 168695f2..47b96065 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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/Recursive/endDate.html b/doc/model_screenless_recursive/Recursive/endDate.html index 024ea14d..680280c9 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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/Recursive/frequency.html b/doc/model_screenless_recursive/Recursive/frequency.html index b02cc678..65ea954b 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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/Recursive/quantity.html b/doc/model_screenless_recursive/Recursive/quantity.html index 96488d5e..c4009c11 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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/Recursive/toJson.html b/doc/model_screenless_recursive/Recursive/toJson.html index dc68acc6..becd1327 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.6
                                                                                                                                                                                                                        diff --git a/doc/model_screenless_recursive/index.html b/doc/model_screenless_recursive/index.html index 5af04582..45b96478 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.6
                                                                                                                                                                                                                        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..ffa467f4 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

                                                                                                                                                                                                                            Constructors

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

                                                                                                                                                                                                                            Operators

                                                                                                                                                                                                                            @@ -257,7 +254,7 @@
                                                                                                                                                                                                                            redirects library
                                                                                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                            diff --git a/doc/model_screenless_redirects/Redirects/Redirects.fromJson.html b/doc/model_screenless_redirects/Redirects/Redirects.fromJson.html index 88de099a..4e5fb8ab 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.6
                                                                                                                                                                                                                            diff --git a/doc/model_screenless_redirects/Redirects/Redirects.html b/doc/model_screenless_redirects/Redirects/Redirects.html index 47380c66..64b98f5f 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.6
                                                                                                                                                                                                                            diff --git a/doc/model_screenless_redirects/Redirects/errorUrl.html b/doc/model_screenless_redirects/Redirects/errorUrl.html index 64c1f325..46e466e7 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.6
                                                                                                                                                                                                                            diff --git a/doc/model_screenless_redirects/Redirects/successUrl.html b/doc/model_screenless_redirects/Redirects/successUrl.html index 6bc5d7f0..df7ba44b 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.6
                                                                                                                                                                                                                            diff --git a/doc/model_screenless_redirects/Redirects/toJson.html b/doc/model_screenless_redirects/Redirects/toJson.html index 53a2468b..796615bf 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.6
                                                                                                                                                                                                                            diff --git a/doc/model_screenless_redirects/index.html b/doc/model_screenless_redirects/index.html index 378e2fec..083a923e 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.6
                                                                                                                                                                                                                            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..d43faa76 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.new({required PaymentDetails paymentDetails, required Payer payer, Callbacks? callbacks})
                                                                                                                                                                                                                                @@ -250,7 +247,7 @@

                                                                                                                                                                                                                                Operators

                                                                                                                                                                                                                                @@ -263,7 +260,7 @@
                                                                                                                                                                                                                                screenless_payment library
                                                                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.fromJson.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.fromJson.html index 82001726..e96df2d6 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.6
                                                                                                                                                                                                                                diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/ScreenlessPayment.html index 1a4cbd26..170ec9ec 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
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Implementation
                                                                                                                                                                                                                                ScreenlessPayment class
                                                                                                                                                                                                                                @@ -100,7 +97,7 @@
                                                                                                                                                                                                                                ScreenlessPayment class
                                                                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/callbacks.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/callbacks.html index 01ff4936..a81b04f4 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 @@ -
                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                                                                                ScreenlessPayment class
                                                                                                                                                                                                                                flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/payer.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/payer.html index 73aa12f6..e60144b7 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.6
                                                                                                                                                                                                                                diff --git a/doc/model_screenless_screenless_payment/ScreenlessPayment/paymentDetails.html b/doc/model_screenless_screenless_payment/ScreenlessPayment/paymentDetails.html index 7b124560..f9a34171 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.6
                                                                                                                                                                                                                                diff --git a/doc/model_screenless_screenless_payment/index.html b/doc/model_screenless_screenless_payment/index.html index b5a8b106..12b3dd0f 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.6
                                                                                                                                                                                                                                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..f995b029 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

                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - TransferMethod({required String id, required String name, required String imageUrl}) +
                                                                                                                                                                                                                                    + TransferMethod.new({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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.fromJson.html b/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.fromJson.html index b9bac41e..657f9a5a 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.html b/doc/model_screenless_transfer_method/TransferMethod/TransferMethod.html index 99d7d376..cccb8898 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/TransferMethod/id.html b/doc/model_screenless_transfer_method/TransferMethod/id.html index 7364f113..55d60311 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/TransferMethod/imageUrl.html b/doc/model_screenless_transfer_method/TransferMethod/imageUrl.html index c40118e0..95aacb68 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/TransferMethod/name.html b/doc/model_screenless_transfer_method/TransferMethod/name.html index 63019645..2afce0a5 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/TransferMethod/toJson.html b/doc/model_screenless_transfer_method/TransferMethod/toJson.html index e1c04647..ab43fe92 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_screenless_transfer_method/index.html b/doc/model_screenless_transfer_method/index.html index 62c61edb..71370bdf 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.6
                                                                                                                                                                                                                                    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..be5b8f7b 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. diff --git a/doc/model_screenless_transfer_payment/TransferPayment-class.html b/doc/model_screenless_transfer_payment/TransferPayment-class.html index b4a273ba..1bb64c01 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

                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - TransferPayment({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, required int channelId, required String bankName}) +
                                                                                                                                                                                                                                        + TransferPayment.new({required PaymentDetails paymentDetails, required Payer payer, required Callbacks? callbacks, required int channelId, required String bankName})
                                                                                                                                                                                                                                        @@ -288,7 +285,7 @@

                                                                                                                                                                                                                                        Operators

                                                                                                                                                                                                                                        @@ -301,7 +298,7 @@
                                                                                                                                                                                                                                        transfer_payment library
                                                                                                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.fromJson.html b/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.fromJson.html index edefab4b..de457241 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.html b/doc/model_screenless_transfer_payment/TransferPayment/TransferPayment.html index 5a68b5c3..a4b8df1f 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
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Implementation
                                                                                                                                                                                                                                        TransferPayment class
                                                                                                                                                                                                                                        @@ -104,7 +101,7 @@
                                                                                                                                                                                                                                        TransferPayment class
                                                                                                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/bankName.html b/doc/model_screenless_transfer_payment/TransferPayment/bankName.html index 6f38d498..e5f4ceea 100644 --- a/doc/model_screenless_transfer_payment/TransferPayment/bankName.html +++ b/doc/model_screenless_transfer_payment/TransferPayment/bankName.html @@ -25,7 +25,7 @@ menu @@ -33,17 +33,14 @@ -
                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Implementation @@ -97,7 +94,7 @@
                                                                                                                                                                                                                                        TransferPayment class
                                                                                                                                                                                                                                        flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/channelId.html b/doc/model_screenless_transfer_payment/TransferPayment/channelId.html index 857dc0c6..b6ff159b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/TransferPayment/toJson.html b/doc/model_screenless_transfer_payment/TransferPayment/toJson.html index 7029a160..e3d605f1 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_screenless_transfer_payment/index.html b/doc/model_screenless_transfer_payment/index.html index 8911d7b2..0bd1c4dd 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.6
                                                                                                                                                                                                                                        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..12dfacc1 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

                                                                                                                                                                                                                                            Constructors

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

                                                                                                                                                                                                                                            Operators

                                                                                                                                                                                                                                            @@ -259,7 +256,7 @@
                                                                                                                                                                                                                                            tokenization library
                                                                                                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                            diff --git a/doc/model_tokenization_tokenization/Tokenization/Tokenization.fromJson.html b/doc/model_tokenization_tokenization/Tokenization/Tokenization.fromJson.html index 5bb374af..e793e394 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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_tokenization_tokenization/Tokenization/Tokenization.html b/doc/model_tokenization_tokenization/Tokenization/Tokenization.html index 4eba84cd..26e57ec5 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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_tokenization_tokenization/Tokenization/notificationUrl.html b/doc/model_tokenization_tokenization/Tokenization/notificationUrl.html index 77673fb2..8f7e13f3 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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_tokenization_tokenization/Tokenization/payer.html b/doc/model_tokenization_tokenization/Tokenization/payer.html index d2a9484f..1e8d3c83 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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_tokenization_tokenization/Tokenization/toJson.html b/doc/model_tokenization_tokenization/Tokenization/toJson.html index d52001ca..5364d39b 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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_tokenization_tokenization/index.html b/doc/model_tokenization_tokenization/index.html index b6126c3f..20dedb82 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.6
                                                                                                                                                                                                                                            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..a5cb1bac 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

                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - TpayConfiguration({required Merchant merchant, required MerchantDetails merchantDetails, required Languages languages, required PaymentMethods paymentMethods}) +
                                                                                                                                                                                                                                                + TpayConfiguration.new({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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.fromJson.html b/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.fromJson.html index 97483b8c..a388b2db 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.html b/doc/model_tpay_configuration/TpayConfiguration/TpayConfiguration.html index 97ace17c..d334050a 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/languages.html b/doc/model_tpay_configuration/TpayConfiguration/languages.html index 0deb5400..058c5c65 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/merchant.html b/doc/model_tpay_configuration/TpayConfiguration/merchant.html index 14aa0af3..e3c4c61e 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/merchantDetails.html b/doc/model_tpay_configuration/TpayConfiguration/merchantDetails.html index f26f317e..87dc3329 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/paymentMethods.html b/doc/model_tpay_configuration/TpayConfiguration/paymentMethods.html index 70ffd900..4a39c1e2 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/TpayConfiguration/toJson.html b/doc/model_tpay_configuration/TpayConfiguration/toJson.html index 5d9f0bcc..bc7e39c8 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_tpay_configuration/index.html b/doc/model_tpay_configuration/index.html index 0b0f9a4a..bdcebfc8 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.6
                                                                                                                                                                                                                                                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..b03e5c92 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.6
                                                                                                                                                                                                                                                  diff --git a/doc/model_tpay_environment/TpayEnvironment/values-constant.html b/doc/model_tpay_environment/TpayEnvironment/values-constant.html index 4bbdf1b4..b02d6c65 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.6
                                                                                                                                                                                                                                                  diff --git a/doc/model_tpay_environment/index.html b/doc/model_tpay_environment/index.html index d926d9fb..44221c9f 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.6
                                                                                                                                                                                                                                                  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..e065c524 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
                                                                                                                                                                                                                                                @@ -99,8 +98,8 @@

                                                                                                                                                                                                                                                SingleTransaction class

                                                                                                                                                                                                                                                Constructors

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - SingleTransaction({required double amount, required String description, required PayerContext payerContext, Notifications? notifications}) +
                                                                                                                                                                                                                                                + SingleTransaction.new({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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.fromJson.html b/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.fromJson.html index 459c867c..208aade8 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.6
                                                                                                                                                                                                                                                diff --git a/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.html b/doc/model_transaction_single_transaction/SingleTransaction/SingleTransaction.html index c215e246..4f30e57b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_transaction_single_transaction/SingleTransaction/payerContext.html b/doc/model_transaction_single_transaction/SingleTransaction/payerContext.html index 64b92adb..1222c34e 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_transaction_single_transaction/SingleTransaction/toJson.html b/doc/model_transaction_single_transaction/SingleTransaction/toJson.html index 778b2d49..db40e4ec 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_transaction_single_transaction/index.html b/doc/model_transaction_single_transaction/index.html index 920bc3e6..92554448 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.6
                                                                                                                                                                                                                                        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..df9e1f18 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

                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - TokenPayment({required double amount, required String description, required Payer payer, required String cardToken, Notifications? notifications}) +
                                                                                                                                                                                                                                            + TokenPayment.new({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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_transaction_token_payment/TokenPayment/TokenPayment.fromJson.html b/doc/model_transaction_token_payment/TokenPayment/TokenPayment.fromJson.html index 4f5312a0..2cc8839e 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.6
                                                                                                                                                                                                                                            diff --git a/doc/model_transaction_token_payment/TokenPayment/TokenPayment.html b/doc/model_transaction_token_payment/TokenPayment/TokenPayment.html index 07b833f0..c16a18ff 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.6
                                                                                                                                                                                                                                              diff --git a/doc/model_transaction_token_payment/TokenPayment/cardToken.html b/doc/model_transaction_token_payment/TokenPayment/cardToken.html index 73ed521d..231f75e9 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.6
                                                                                                                                                                                                                                              diff --git a/doc/model_transaction_token_payment/TokenPayment/payer.html b/doc/model_transaction_token_payment/TokenPayment/payer.html index 4b47ef33..86ddb8d0 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.6
                                                                                                                                                                                                                                              diff --git a/doc/model_transaction_token_payment/TokenPayment/toJson.html b/doc/model_transaction_token_payment/TokenPayment/toJson.html index 2732a45a..e1497cbd 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.6
                                                                                                                                                                                                                                              diff --git a/doc/model_transaction_token_payment/index.html b/doc/model_transaction_token_payment/index.html index f121a940..b29a5ffb 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.6
                                                                                                                                                                                                                                              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..476f1826 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.new({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.6
                                                                                                                                                                                                                                                  diff --git a/doc/model_transaction_transaction/Transaction/Transaction.fromJson.html b/doc/model_transaction_transaction/Transaction/Transaction.fromJson.html index 41b4b4c4..0ff302e1 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.6
                                                                                                                                                                                                                                                  diff --git a/doc/model_transaction_transaction/Transaction/Transaction.html b/doc/model_transaction_transaction/Transaction/Transaction.html index e22351b2..97541921 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_transaction_transaction/Transaction/amount.html b/doc/model_transaction_transaction/Transaction/amount.html index 025d090a..cb5adc3f 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_transaction_transaction/Transaction/description.html b/doc/model_transaction_transaction/Transaction/description.html index 8a2ae222..20e97b6a 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_transaction_transaction/Transaction/hiddenDescription.html b/doc/model_transaction_transaction/Transaction/hiddenDescription.html new file mode 100644 index 00000000..ca264202 --- /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.6 + + +
                                                                                                                                                                                                                                    + + + + + + + + diff --git a/doc/model_transaction_transaction/Transaction/notifications.html b/doc/model_transaction_transaction/Transaction/notifications.html index 937676d5..ae4d45e5 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.6
                                                                                                                                                                                                                                    diff --git a/doc/model_transaction_transaction/index.html b/doc/model_transaction_transaction/index.html index fba237ae..84a3e41e 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.6
                                                                                                                                                                                                                                    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..1cda50a5 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

                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - WalletConfiguration({required GooglePayConfiguration? googlePay, required ApplePayConfiguration? applePay}) +
                                                                                                                                                                                                                                        + WalletConfiguration.new({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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.fromJson.html b/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.fromJson.html index fa6c6ad8..119b2015 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.html b/doc/model_wallet_configuration/WalletConfiguration/WalletConfiguration.html index d5d0c97e..75191bd7 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_wallet_configuration/WalletConfiguration/applePay.html b/doc/model_wallet_configuration/WalletConfiguration/applePay.html index 204d4436..38ac918f 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_wallet_configuration/WalletConfiguration/googlePay.html b/doc/model_wallet_configuration/WalletConfiguration/googlePay.html index 36b211c6..08e5fd85 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_wallet_configuration/WalletConfiguration/toJson.html b/doc/model_wallet_configuration/WalletConfiguration/toJson.html index c4502ae1..b9b23b1b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/model_wallet_configuration/index.html b/doc/model_wallet_configuration/index.html index 46f8fcde..dbe94ca0 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.6
                                                                                                                                                                                                                                        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..c2d027b2 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.6
                                                                                                                                                                                                                                          diff --git a/doc/tpay_button/TpayButton/createState.html b/doc/tpay_button/TpayButton/createState.html index 94490237..16b513c3 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.6
                                                                                                                                                                                                                                          diff --git a/doc/tpay_button/TpayButton/onClick.html b/doc/tpay_button/TpayButton/onClick.html index 20a36293..72ac7d2a 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.6
                                                                                                                                                                                                                                          diff --git a/doc/tpay_button/index.html b/doc/tpay_button/index.html index 6bd90373..d0a256a9 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.6
                                                                                                                                                                                                                                          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..4294dd22 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() +
                                                                                                                                                                                                                                              + MethodChannelTpay.new()
                                                                                                                                                                                                                                              @@ -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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/MethodChannelTpay.html b/doc/tpay_method_channel/MethodChannelTpay/MethodChannelTpay.html index 3e041ab9..dbb3f773 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/configure.html b/doc/tpay_method_channel/MethodChannelTpay/configure.html index 483d8cd3..b950c9e1 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/configureGooglePayUtils.html b/doc/tpay_method_channel/MethodChannelTpay/configureGooglePayUtils.html index 549ae7c3..87ce623c 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/getAvailablePaymentChannels.html b/doc/tpay_method_channel/MethodChannelTpay/getAvailablePaymentChannels.html index 7d129aa0..5a67f0df 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/isGooglePayAvailable.html b/doc/tpay_method_channel/MethodChannelTpay/isGooglePayAvailable.html index 4c729a5e..7e480c6a 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/isPaymentOngoing.html b/doc/tpay_method_channel/MethodChannelTpay/isPaymentOngoing.html new file mode 100644 index 00000000..551db8c2 --- /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.6 + + +
                                                                                                                                                                                                                                        + + + + + + + + diff --git a/doc/tpay_method_channel/MethodChannelTpay/openGooglePay.html b/doc/tpay_method_channel/MethodChannelTpay/openGooglePay.html index 8c4777fe..57ce35bd 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessAmbiguousBLIKPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessAmbiguousBLIKPayment.html index a6a33bb2..1dcf511b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessApplePayPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessApplePayPayment.html index 58b034fb..b8aa1640 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessBLIKPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessBLIKPayment.html index 46a66a2f..8bed7fbc 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessCreditCardPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessCreditCardPayment.html index d3c9b744..32bf8dde 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessGooglePayPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessGooglePayPayment.html index 48d0b555..5298a70e 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessPayPoPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessPayPoPayment.html index 0aada074..82dcc2e8 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessRatyPekaoPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessRatyPekaoPayment.html index b72c10d8..6a99ee83 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/screenlessTransferPayment.html b/doc/tpay_method_channel/MethodChannelTpay/screenlessTransferPayment.html index 1b3ee1b2..a30bc29b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/startCardTokenPayment.html b/doc/tpay_method_channel/MethodChannelTpay/startCardTokenPayment.html index e32892de..92e658de 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/startPayment.html b/doc/tpay_method_channel/MethodChannelTpay/startPayment.html index fb24e5dc..fc2a0aee 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/MethodChannelTpay/tokenizeCard.html b/doc/tpay_method_channel/MethodChannelTpay/tokenizeCard.html index d33cdcf9..e2a9517b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/configureGooglePayUtilsMethod-constant.html b/doc/tpay_method_channel/configureGooglePayUtilsMethod-constant.html index cfeaf157..8fd8e2e9 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/configureMethod-constant.html b/doc/tpay_method_channel/configureMethod-constant.html index d8bc1ed2..9e121ed0 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/eventChannel-constant.html b/doc/tpay_method_channel/eventChannel-constant.html index 60461724..5e189534 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/getPaymentChannelsMethod-constant.html b/doc/tpay_method_channel/getPaymentChannelsMethod-constant.html index 3d3cc9ef..aae62a0f 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/index.html b/doc/tpay_method_channel/index.html index 27bebece..8740834a 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/isGooglePayAvailableMethod-constant.html b/doc/tpay_method_channel/isGooglePayAvailableMethod-constant.html index f025c585..d45f8e90 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/methodChannel-constant.html b/doc/tpay_method_channel/methodChannel-constant.html index fd46c289..a5b84f7a 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/openGooglePayMethod-constant.html b/doc/tpay_method_channel/openGooglePayMethod-constant.html index 900bec4b..7e0ac19b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessAmbiguousBLIKPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessAmbiguousBLIKPaymentMethod-constant.html index 847eed98..683d1dc1 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessApplePayMethod-constant.html b/doc/tpay_method_channel/screenlessApplePayMethod-constant.html index 0d3bb9c3..97bfa134 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessBLIKPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessBLIKPaymentMethod-constant.html index da236439..3d5be7d3 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessCreditCardPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessCreditCardPaymentMethod-constant.html index 44eb9ec5..51787f97 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessGooglePayPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessGooglePayPaymentMethod-constant.html index c8b8cee9..920a59c5 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessPayPoPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessPayPoPaymentMethod-constant.html index 5da8641b..e26dcfc2 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessRatyPekaoPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessRatyPekaoPaymentMethod-constant.html index 08cb92df..a18bab9b 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/screenlessTransferPaymentMethod-constant.html b/doc/tpay_method_channel/screenlessTransferPaymentMethod-constant.html index 1a3e3266..46ea670c 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/startCardTokenPaymentMethod-constant.html b/doc/tpay_method_channel/startCardTokenPaymentMethod-constant.html index 595f01c4..70cab97d 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/startPaymentMethod-constant.html b/doc/tpay_method_channel/startPaymentMethod-constant.html index be8c7eff..872068f6 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.6
                                                                                                                                                                                                                                        diff --git a/doc/tpay_method_channel/tokenizeCardMethod-constant.html b/doc/tpay_method_channel/tokenizeCardMethod-constant.html index d592ef27..83498153 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.6
                                                                                                                                                                                                                                        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..a1aa53dc 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() +
                                                                                                                                                                                                                                            + TpayPlatform.new()
                                                                                                                                                                                                                                            @@ -426,7 +423,7 @@

                                                                                                                                                                                                                                            Static Properties

                                                                                                                                                                                                                                            @@ -439,7 +436,7 @@
                                                                                                                                                                                                                                            tpay_platform_interface library
                                                                                                                                                                                                                                            flutter_tpay - 1.2.1 + 1.2.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/TpayPlatform.html b/doc/tpay_platform_interface/TpayPlatform/TpayPlatform.html index 7c855c33..d78da313 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/configure.html b/doc/tpay_platform_interface/TpayPlatform/configure.html index befa8e8b..038c91f7 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/configureGooglePayUtils.html b/doc/tpay_platform_interface/TpayPlatform/configureGooglePayUtils.html index 09585752..af84e9a9 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/getAvailablePaymentChannels.html b/doc/tpay_platform_interface/TpayPlatform/getAvailablePaymentChannels.html index a2bf5d43..53e6e66f 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/instance.html b/doc/tpay_platform_interface/TpayPlatform/instance.html index 90a50f0b..425826c2 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/isGooglePayAvailable.html b/doc/tpay_platform_interface/TpayPlatform/isGooglePayAvailable.html index 4b2a2f05..a3784833 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/openGooglePay.html b/doc/tpay_platform_interface/TpayPlatform/openGooglePay.html index b346da50..ce7e1d87 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessAmbiguousBLIKPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessAmbiguousBLIKPayment.html index 71919bd6..7682a176 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessApplePayPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessApplePayPayment.html index a0a4a8d1..18ba9265 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessBLIKPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessBLIKPayment.html index a7363d91..8bd06d79 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessCreditCardPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessCreditCardPayment.html index df5a5c0d..6dde6f99 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessGooglePayPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessGooglePayPayment.html index e73848c9..4094c2ae 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessPayPoPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessPayPoPayment.html index 3da69e7d..832d781b 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessRatyPekaoPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessRatyPekaoPayment.html index 2a912a12..65c7506a 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/screenlessTransferPayment.html b/doc/tpay_platform_interface/TpayPlatform/screenlessTransferPayment.html index 196dab51..45a6b0aa 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/startCardTokenPayment.html b/doc/tpay_platform_interface/TpayPlatform/startCardTokenPayment.html index 1292c106..f2b4036c 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/startPayment.html b/doc/tpay_platform_interface/TpayPlatform/startPayment.html index c8e8ca4d..ddee621e 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/TpayPlatform/tokenizeCard.html b/doc/tpay_platform_interface/TpayPlatform/tokenizeCard.html index d0849698..0aaacd7e 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.6
                                                                                                                                                                                                                                            diff --git a/doc/tpay_platform_interface/index.html b/doc/tpay_platform_interface/index.html index 454095da..bd7dd170 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.6
                                                                                                                                                                                                                                            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..7dd8175a 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_configuration_util/index.html b/doc/util_google_pay_configuration_util/index.html index 69a9d4be..c189b9c7 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_configuration_util/mapGooglePayConfigurationResult.html b/doc/util_google_pay_configuration_util/mapGooglePayConfigurationResult.html index ac51da59..7a6e0ae3 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_configuration_util/message-constant.html b/doc/util_google_pay_configuration_util/message-constant.html index dc6364c3..76c785d6 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_configuration_util/success-constant.html b/doc/util_google_pay_configuration_util/success-constant.html index 869ab413..5a0d65bb 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_configuration_util/type-constant.html b/doc/util_google_pay_configuration_util/type-constant.html index 5ba0f69d..24ec8a82 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_configuration_util/unknownGooglePayConfigurationResult-constant.html b/doc/util_google_pay_configuration_util/unknownGooglePayConfigurationResult-constant.html index d45fd778..37911f52 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.6
                                                                                                                                                                                                                                              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..be0b16dc 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/cardNetwork-constant.html b/doc/util_google_pay_util/cardNetwork-constant.html index 53f1b1a9..bb5eb8b7 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/cardTail-constant.html b/doc/util_google_pay_util/cardTail-constant.html index 8d83f593..f91e2b2d 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/description-constant.html b/doc/util_google_pay_util/description-constant.html index b174452c..e03d64b6 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/error-constant.html b/doc/util_google_pay_util/error-constant.html index 415ee111..8c811700 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/index.html b/doc/util_google_pay_util/index.html index 376506d8..59216453 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/mapGooglePayConfigurationResult.html b/doc/util_google_pay_util/mapGooglePayConfigurationResult.html index e8087d0f..5cf14e64 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/mapGooglePayOpenResult.html b/doc/util_google_pay_util/mapGooglePayOpenResult.html index 61f01c3d..a5442208 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/message-constant.html b/doc/util_google_pay_util/message-constant.html index f682571c..dc5c1f6e 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/notConfigured-constant.html b/doc/util_google_pay_util/notConfigured-constant.html index 69cc55bc..56321633 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/success-constant.html b/doc/util_google_pay_util/success-constant.html index d5952bd0..52545b34 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/token-constant.html b/doc/util_google_pay_util/token-constant.html index 37c99a04..6a983d4d 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/type-constant.html b/doc/util_google_pay_util/type-constant.html index 2d460a47..0ff26f13 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/unknownError-constant.html b/doc/util_google_pay_util/unknownError-constant.html index 28eba016..bc63849c 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_google_pay_util/unknownGooglePayConfigurationResult-constant.html b/doc/util_google_pay_util/unknownGooglePayConfigurationResult-constant.html index c7390f5b..48ea1faa 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.6
                                                                                                                                                                                                                                              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..e56be1c3 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/currency-constant.html b/doc/util_payment_channels_util/currency-constant.html index 74ffb9a9..d39450e0 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/error-constant.html b/doc/util_payment_channels_util/error-constant.html index 3c9708c9..d8be529a 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/index.html b/doc/util_payment_channels_util/index.html index e3b867a2..44855c3d 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/language-constant.html b/doc/util_payment_channels_util/language-constant.html index c08e85af..d4881d58 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/mapPaymentChannelsResult.html b/doc/util_payment_channels_util/mapPaymentChannelsResult.html index d5bf954f..9ae4307f 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/message-constant.html b/doc/util_payment_channels_util/message-constant.html index d9e7bf9d..bd0fb057 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/success-constant.html b/doc/util_payment_channels_util/success-constant.html index d3034916..32e4925f 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/type-constant.html b/doc/util_payment_channels_util/type-constant.html index d3f48d61..e75bfaeb 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_payment_channels_util/unknownType-constant.html b/doc/util_payment_channels_util/unknownType-constant.html index 3420c64f..8ec431d6 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.6
                                                                                                                                                                                                                                              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..d6ce614c 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/index.html b/doc/util_result_util/index.html index b183c156..38e81061 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/mapResult.html b/doc/util_result_util/mapResult.html index 9994fc55..6822433c 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/methodCallError-constant.html b/doc/util_result_util/methodCallError-constant.html index 4227e598..741015ec 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/moduleClosed-constant.html b/doc/util_result_util/moduleClosed-constant.html index 13d4ec66..7a6440e6 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/paymentCancelled-constant.html b/doc/util_result_util/paymentCancelled-constant.html index 67c99339..6afdd80b 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/paymentCompleted-constant.html b/doc/util_result_util/paymentCompleted-constant.html index 9e7c5356..6f9fb969 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/paymentCreated-constant.html b/doc/util_result_util/paymentCreated-constant.html index 41174588..47ffdb64 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/tokenizationCompleted-constant.html b/doc/util_result_util/tokenizationCompleted-constant.html index 3358a0ce..a5da957f 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/tokenizationFailure-constant.html b/doc/util_result_util/tokenizationFailure-constant.html index 95048bb5..dbdb1fc4 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/type-constant.html b/doc/util_result_util/type-constant.html index 4efc5809..13b12d38 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/unknownResult-constant.html b/doc/util_result_util/unknownResult-constant.html index f4d8dec4..a65cae5c 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.6
                                                                                                                                                                                                                                              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..2fc32c0a 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_result_util/value-constant.html b/doc/util_result_util/value-constant.html index e4aad586..91a00b49 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/aliases-constant.html b/doc/util_screenless_result_util/aliases-constant.html index fb5c113b..dc23c4eb 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/ambiguousAlias-constant.html b/doc/util_screenless_result_util/ambiguousAlias-constant.html index 96e29ea2..e22c66c4 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/configuredPaymentFailed-constant.html b/doc/util_screenless_result_util/configuredPaymentFailed-constant.html index b21e468d..e3bb4ab2 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/error-constant.html b/doc/util_screenless_result_util/error-constant.html index 6bd6d00b..9bdff567 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/index.html b/doc/util_screenless_result_util/index.html index 4c9c02dc..17c278b4 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/mapScreenlessResult.html b/doc/util_screenless_result_util/mapScreenlessResult.html index ca4e49e3..f8389321 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/message-constant.html b/doc/util_screenless_result_util/message-constant.html index 78292b1b..18bb4488 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/methodCallError-constant.html b/doc/util_screenless_result_util/methodCallError-constant.html index 3f6d89b4..0919635a 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/paid-constant.html b/doc/util_screenless_result_util/paid-constant.html index 0f176fb1..64a32ad6 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/paymentCreated-constant.html b/doc/util_screenless_result_util/paymentCreated-constant.html index 12a267a1..1d0b84f4 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/paymentUrl-constant.html b/doc/util_screenless_result_util/paymentUrl-constant.html index f173056b..958204ec 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/transactionId-constant.html b/doc/util_screenless_result_util/transactionId-constant.html index e0b5f4b3..5e6f7652 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/type-constant.html b/doc/util_screenless_result_util/type-constant.html index e1d8c612..d71d43d0 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.6
                                                                                                                                                                                                                                              diff --git a/doc/util_screenless_result_util/unknownScreenlessResult-constant.html b/doc/util_screenless_result_util/unknownScreenlessResult-constant.html index 944f04a1..2c33be54 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.6
                                                                                                                                                                                                                                              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..5985d4bd 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