ImgbbResponse.fromJson constructor

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

Implementation

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