$StaticListener.fromJson constructor
$StaticListener.fromJson(
- Map json_
Implementation
$StaticListener.fromJson(core.Map json_)
: this(
lastUpdated: json_.containsKey('lastUpdated')
? json_['lastUpdated'] as core.String
: null,
listener: json_.containsKey('listener')
? json_['listener'] as core.Map<core.String, core.dynamic>
: null,
);