LocationEnrichment.fromJson constructor
LocationEnrichment.fromJson(
- Map json_
Implementation
LocationEnrichment.fromJson(core.Map json_)
: this(
location: json_.containsKey('location')
? Location.fromJson(
json_['location'] as core.Map<core.String, core.dynamic>)
: null,
);