EffectResponseLinks.fromJson constructor

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

Implementation

factory EffectResponseLinks.fromJson(Map<String, dynamic> json) {
  return EffectResponseLinks(
      json['operation'] == null ? null : Link.fromJson(json['operation']),
      json['precedes'] == null ? null : Link.fromJson(json['precedes']),
      json['succeeds'] == null ? null : Link.fromJson(json['succeeds']));
}