GalleryItem.fromJson constructor
Implementation
factory GalleryItem.fromJson(Map<String, dynamic> json) {
return GalleryItem(
id: json['id'],
description: json['description'],
imageUrl: json['image_url'],
accountId: json['account_id'],
);
}