LocalizedMerchantInfo class

Information of the Main Merchant, presented in a preferred language setting.

Inheritance

Constructors

LocalizedMerchantInfo(String data)

Properties

entries Iterable<MapEntry<int, String>>
The map entries of this Map.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
Whether there is no key/value pair in the map.
no setterinherited
isNotEmpty bool
Whether there is at least one key/value pair in the map.
no setterinherited
keys Iterable<int>
The keys of this Map.
no setterinherited
languagePreference String?
The preferred language, presented in ISO 639 standard (two letters alphabet).
no setter
length int
The number of key/value pairs in the map.
no setterinherited
merchantCity String?
The city of the merchant location, localized by languagePreference
no setter
merchantName String?
The merchant name, localized by languagePreference
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values Iterable<String>
The values of this Map.
no setterinherited

Methods

addAll(Map<int, String> other) → void
This operation is not supported by an unmodifiable map.
inherited
addEntries(Iterable<MapEntry<int, String>> entries) → void
This operation is not supported by an unmodifiable map.
inherited
cast<RK, RV>() Map<RK, RV>
Provides a view of this map as having RK keys and RV instances, if necessary.
inherited
clear() → void
This operation is not supported by an unmodifiable map.
inherited
containsKey(Object? key) bool
Whether this map contains the given key.
inherited
containsValue(Object? value) bool
Whether this map contains the given value.
inherited
forEach(void action(int key, String value)) → void
Applies action to each key/value pair of the map.
inherited
map<K2, V2>(MapEntry<K2, V2> transform(int key, String value)) Map<K2, V2>
Returns a new map where all entries of this map are transformed by the given convert function.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
putIfAbsent(int key, String ifAbsent()) String
This operation is not supported by an unmodifiable map.
inherited
remove(Object? key) String?
This operation is not supported by an unmodifiable map.
inherited
removeWhere(bool test(int key, String value)) → void
This operation is not supported by an unmodifiable map.
inherited
toEncodable() Map<String, dynamic>
inherited
toString() String
Returns the base data
inherited
update(int key, String update(String value), {String ifAbsent()?}) String
This operation is not supported by an unmodifiable map.
inherited
updateAll(String update(int key, String value)) → void
This operation is not supported by an unmodifiable map.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](covariant int? key) String?
Fetch an entry by subtag Shouldn't override
inherited
operator []=(int key, String value) → void
This operation is not supported by an unmodifiable map.
inherited