Query$EventsByModule.fromJson constructor
Implementation
factory Query$EventsByModule.fromJson(Map<String, dynamic> json) {
final l$events = json['events'];
return Query$EventsByModule(
events: l$events == null
? null
: Query$EventsByModule$events.fromJson(
(l$events as Map<String, dynamic>),
),
);
}