AnchorTransactionResponse.fromJson constructor Null safety
Implementation
factory AnchorTransactionResponse.fromJson(Map<String, dynamic> json) =>
AnchorTransactionResponse(
json['transaction'] == null ? null : AnchorTransaction.fromJson(json['transaction']));