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