ValueMapValEntry.fromJson constructor
ValueMapValEntry.fromJson(
- Map json_
Implementation
ValueMapValEntry.fromJson(core.Map json_)
: this(
key: json_.containsKey('key') ? json_['key'] as core.String : null,
value: json_.containsKey('value')
? MapValue.fromJson(
json_['value'] as core.Map<core.String, core.dynamic>)
: null,
);