AnchorTransactionsResponse.fromJson constructor

AnchorTransactionsResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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