OperationResponseLinks.fromJson constructor

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

Implementation

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