JMapEntry<K, V> class

Inheritance

Constructors

JMapEntry(K key, V value)
Creates an entry with key and value.
JMapEntry.fromJson(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
key → K
The key of the entry.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value → V
The value associated to key in the map.
final

Methods

fromJsonList(List? jsonList) List<JMapEntry>?
inherited
fromJsonMap(Map<String, dynamic>? json) JMapEntry?
override
fromJsonString(String? json) JMapEntry?
inherited
fromJsonStringList(String? jsonStringList) List<JMapEntry>?
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
override
toJsonMap() Map<String, dynamic>
inherited
toJsonString() String
inherited
toString() String
This is just to suggest children to implement a named constructor to support creating objects fromJson(...) and fromJsonString(...) as easy as T.build().fromJson(...) or T.build().fromJsonString(...)
override

Operators

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