Unwound.fromJson constructor

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

Implementation

factory Unwound.fromJson(Map<String, dynamic> json) => Unwound(
      url: json["url"],
      status: json["status"],
      title: json["title"],
      description: json["description"],
    );