List<Carousel> carouselFromJson(String str) { try{ return List<Carousel>.from(json.decode(str).map((x) => Carousel.fromJson(x))); }catch(_){ return []; } }