$StaticListener.fromJson constructor

$StaticListener.fromJson(
  1. Map json_
)

Implementation

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