Update Flutter

This commit is contained in:
Hillel Coren 2021-11-18 12:10:04 +02:00
parent 9f5a34680e
commit ec2e181bb4
2 changed files with 6 additions and 6 deletions

View File

@ -265,7 +265,7 @@ const String kGatewayTypeEPS = '17';
const String kGatewayTypeDirectDebit = '18'; const String kGatewayTypeDirectDebit = '18';
const String kGatewayTypeACSS = '19'; const String kGatewayTypeACSS = '19';
const String kGatewayTypeBECS = '20'; const String kGatewayTypeBECS = '20';
const String kGatewayTypeBankPay = '21'; const String kGatewayTypeInstantBankPay = '21';
const kGatewayTypes = { const kGatewayTypes = {
kGatewayTypeCreditCard: 'credit_card', kGatewayTypeCreditCard: 'credit_card',
@ -288,7 +288,7 @@ const kGatewayTypes = {
kGatewayTypeEPS: 'eps', kGatewayTypeEPS: 'eps',
kGatewayTypeACSS: 'acss', kGatewayTypeACSS: 'acss',
kGatewayTypeBECS: 'becs', kGatewayTypeBECS: 'becs',
kGatewayTypeBankPay: 'bank_pay', kGatewayTypeInstantBankPay: 'instant_bank_pay',
}; };
const String kNotificationChannelEmail = 'email'; const String kNotificationChannelEmail = 'email';

View File

@ -16,7 +16,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
static final Map<String, Map<String, String>> _localizedValues = { static final Map<String, Map<String, String>> _localizedValues = {
'en': { 'en': {
// STARTER: lang key - do not remove comment // STARTER: lang key - do not remove comment
'bank_pay': 'Bank Pay', 'instant_bank_pay': 'Instant Bank Pay',
'click_selected': 'Click Selected', 'click_selected': 'Click Selected',
'hide_preview': 'Hide Preview', 'hide_preview': 'Hide Preview',
'edit_record': 'Edit Record', 'edit_record': 'Edit Record',
@ -62830,9 +62830,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
_localizedValues[localeCode]['hide_preview'] ?? _localizedValues[localeCode]['hide_preview'] ??
_localizedValues['en']['hide_preview']; _localizedValues['en']['hide_preview'];
String get bankPay => String get instantBankPay =>
_localizedValues[localeCode]['bank_pay'] ?? _localizedValues[localeCode]['instant_bank_pay'] ??
_localizedValues['en']['bank_pay']; _localizedValues['en']['instant_bank_pay'];
// STARTER: lang field - do not remove comment // STARTER: lang field - do not remove comment