GalleryAttachmentArray.fromJson constructor

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

Implementation

factory GalleryAttachmentArray.fromJson(Map<String, dynamic> json) =>
    GalleryAttachmentArray(
      id: json["id"],
      url: json["url"],
    );