Record.fromJson constructor

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

Implementation

factory Record.fromJson(Map<String, dynamic> json) => Record(
  links: json["Links"],
  image: json["Image"],
  title: json["Title"],
  subtitle: json["Subtitle"],
);