$CounterEvent.fromJson constructor
$CounterEvent.fromJson(
- Map json_
Implementation
$CounterEvent.fromJson(core.Map json_)
: this(
name: json_.containsKey('name') ? json_['name'] as core.String : null,
reportingName: json_.containsKey('reportingName')
? json_['reportingName'] as core.String
: null,
);