Query$ListTransactions$transactions$nodes$effects.fromJson constructor

Query$ListTransactions$transactions$nodes$effects.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$ListTransactions$transactions$nodes$effects.fromJson(
  Map<String, dynamic> json,
) {
  final l$status = json['status'];
  final l$timestamp = json['timestamp'];
  final l$checkpoint = json['checkpoint'];
  return Query$ListTransactions$transactions$nodes$effects(
    status: l$status == null
        ? null
        : fromJson$Enum$ExecutionStatus((l$status as String)),
    timestamp: (l$timestamp as String?),
    checkpoint: l$checkpoint == null
        ? null
        : Query$ListTransactions$transactions$nodes$effects$checkpoint.fromJson(
            (l$checkpoint as Map<String, dynamic>),
          ),
  );
}