ImgbbResponse.fromJson constructor
Implementation
factory ImgbbResponse.fromJson(Map<String, dynamic> json) => ImgbbResponse(
data: json["data"] == null ? null : Data.fromJson(json["data"]),
success: json["success"],
status: json["status"],
);