ImgbbResponse constructor

ImgbbResponse({
  1. required String id,
  2. required String title,
  3. required int width,
  4. required int height,
  5. required int size,
  6. required int time,
  7. required int expiration,
  8. required String fileName,
  9. required String mime,
  10. required String extension,
  11. required String thumbnailUrl,
  12. required String mediumUrl,
  13. required String url,
  14. required String displayUrl,
  15. required String deleteUrl,
})

Implementation

ImgbbResponse(
    {required this.id,
    required this.title,
    required this.width,
    required this.height,
    required this.size,
    required this.time,
    required this.expiration,
    required this.fileName,
    required this.mime,
    required this.extension,
    required this.thumbnailUrl,
    required this.mediumUrl,
    required this.url,
    required this.displayUrl,
    required this.deleteUrl});