DescriptionCard constructor

const DescriptionCard({
  1. required String image_src,
  2. required String title,
  3. required String description,
  4. required String url,
  5. required String url_title,
  6. required Color text_color,
  7. required Axis direction,
  8. required bool reversed,
  9. required double current_offset,
  10. required double visible_offset,
})

Implementation

const DescriptionCard({
  required this.image_src,
  required this.title,
  required this.description,
  required this.url,
  required this.url_title,
  required this.text_color,
  required this.direction,
  required this.reversed,
  required this.current_offset,
  required this.visible_offset,
});