EventChild.fromJson constructor
EventChild.fromJson(
- Map json_
Implementation
EventChild.fromJson(core.Map json_)
: this(
childId: json_.containsKey('childId')
? json_['childId'] as core.String
: null,
kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
);