Update Flutter
This commit is contained in:
parent
9f5a34680e
commit
ec2e181bb4
|
|
@ -265,7 +265,7 @@ const String kGatewayTypeEPS = '17';
|
|||
const String kGatewayTypeDirectDebit = '18';
|
||||
const String kGatewayTypeACSS = '19';
|
||||
const String kGatewayTypeBECS = '20';
|
||||
const String kGatewayTypeBankPay = '21';
|
||||
const String kGatewayTypeInstantBankPay = '21';
|
||||
|
||||
const kGatewayTypes = {
|
||||
kGatewayTypeCreditCard: 'credit_card',
|
||||
|
|
@ -288,7 +288,7 @@ const kGatewayTypes = {
|
|||
kGatewayTypeEPS: 'eps',
|
||||
kGatewayTypeACSS: 'acss',
|
||||
kGatewayTypeBECS: 'becs',
|
||||
kGatewayTypeBankPay: 'bank_pay',
|
||||
kGatewayTypeInstantBankPay: 'instant_bank_pay',
|
||||
};
|
||||
|
||||
const String kNotificationChannelEmail = 'email';
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
|||
static final Map<String, Map<String, String>> _localizedValues = {
|
||||
'en': {
|
||||
// STARTER: lang key - do not remove comment
|
||||
'bank_pay': 'Bank Pay',
|
||||
'instant_bank_pay': 'Instant Bank Pay',
|
||||
'click_selected': 'Click Selected',
|
||||
'hide_preview': 'Hide Preview',
|
||||
'edit_record': 'Edit Record',
|
||||
|
|
@ -62830,9 +62830,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
|||
_localizedValues[localeCode]['hide_preview'] ??
|
||||
_localizedValues['en']['hide_preview'];
|
||||
|
||||
String get bankPay =>
|
||||
_localizedValues[localeCode]['bank_pay'] ??
|
||||
_localizedValues['en']['bank_pay'];
|
||||
String get instantBankPay =>
|
||||
_localizedValues[localeCode]['instant_bank_pay'] ??
|
||||
_localizedValues['en']['instant_bank_pay'];
|
||||
|
||||
// STARTER: lang field - do not remove comment
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue