SoftwarePayLocalization class abstract

Callers can lookup localized strings with an instance of SoftwarePayLocalization returned by SoftwarePayLocalization.of(context).

Applications need to include SoftwarePayLocalization.delegate() in their app's localizationDelegates list, and the locales they support in the app's supportedLocales list. For example:

import 'generated/software_pay_localization.dart';

return MaterialApp(
  localizationsDelegates: SoftwarePayLocalization.localizationsDelegates,
  supportedLocales: SoftwarePayLocalization.supportedLocales,
  home: MyApplicationHome(),
);

Update pubspec.yaml

Please make sure to update your pubspec.yaml to include the following packages:

dependencies:
  # Internationalization support.
  flutter_localizations:
    sdk: flutter
  intl: any # Use the pinned version from flutter_localizations

  # Rest of dependencies

iOS Applications

iOS applications define key application metadata, including supported locales, in an Info.plist file that is built into the application bundle. To configure the locales supported by your app, you’ll need to edit this file.

First, open your project’s ios/Runner.xcworkspace Xcode workspace file. Then, in the Project Navigator, open the Info.plist file under the Runner project’s Runner folder.

Next, select the Information Property List item, select Add Item from the Editor menu, then select Localizations from the pop-up menu.

Select and expand the newly-created Localizations item then, for each locale your application supports, add a new item and select the locale you wish to add from the pop-up menu in the Value field. This list should be consistent with the languages listed in the SoftwarePayLocalization.supportedLocales property.

Implementers

Constructors

SoftwarePayLocalization(String locale)

Properties

afterMakingThePaymentFillTheFollowingInformation String
No description provided for @afterMakingThePaymentFillTheFollowingInformation.
no setter
afterPayment String
No description provided for @afterPayment.
no setter
amanty String
No description provided for @amanty.
no setter
amountToPay String
No description provided for @amountToPay.
no setter
bankily String
No description provided for @bankily.
no setter
bankilyPhoneNumber String
No description provided for @bankilyPhoneNumber.
no setter
bCIpay String
No description provided for @bCIpay.
no setter
bimBank String
No description provided for @bimBank.
no setter
codeBPay String
No description provided for @codeBPay.
no setter
copiedThisText String
No description provided for @copiedThisText.
no setter
copyTheCodeBPayAndHeadToBankilyToPayTheAmount String
No description provided for @copyTheCodeBPayAndHeadToBankilyToPayTheAmount.
no setter
copyTheMerchantCodeAndHeadToSedadToPayTheAmount String
No description provided for @copyTheCodeBPayAndHeadToBankilyToPayTheAmount.
no setter
enterYourBankilyPhoneNumber String
No description provided for @enterYourBankilyPhoneNumber.
no setter
hashCode int
The hash code for this object.
no setterinherited
localeName String
final
masrivi String
No description provided for @masrivi.
no setter
merchantCode String
No description provided for @retry.
no setter
paymentMethod String
No description provided for @paymentMethod.
no setter
paymentPassCode String
No description provided for @paymentPassCode.
no setter
paymentPassCodeFromBankily String
No description provided for @paymentPassCodeFromBankily.
no setter
retry String
No description provided for @retry.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sedad String
No description provided for @sedad.
no setter
sendForVerification String
No description provided for @sendForVerification.
no setter
unknownError String
No description provided for @unknownError.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
payUsing(Object method) String
No description provided for @payUsing.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

of(BuildContext context) SoftwarePayLocalization?

Constants

delegate → const LocalizationsDelegate<SoftwarePayLocalization>
localizationsDelegates → const List<LocalizationsDelegate>
A list of this localizations delegate along with the default localizations delegates.
supportedLocales → const List<Locale>
A list of this localizations delegate's supported locales.