AnchorTransactionsResponse.fromJson constructor Null safety
Implementation
factory AnchorTransactionsResponse.fromJson(Map<String, dynamic> json) =>
AnchorTransactionsResponse((json['transactions'] as List)
.map((e) => e == null ? null : AnchorTransaction.fromJson(e))
.toList());