TransactionResponseLinks.fromJson constructor

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

Implementation

factory TransactionResponseLinks.fromJson(Map<String, dynamic> json) =>
    TransactionResponseLinks(
        json['account'] == null ? null : Link.fromJson(json['account']),
        json['effects'] == null ? null : Link.fromJson(json['effects']),
        json['ledger'] == null ? null : Link.fromJson(json['ledger']),
        json['operations'] == null ? null : Link.fromJson(json['operations']),
        json['precedes'] == null ? null : Link.fromJson(json['precedes']),
        json['self'] == null ? null : Link.fromJson(json['self']),
        json['succeeds'] == null ? null : Link.fromJson(json['succeeds']));