ImageWithoutCaption constructor

const ImageWithoutCaption({
  1. Key? key,
  2. required String? imgUrl,
  3. required BoxConstraints constraints,
  4. required Color color,
  5. required bool isMe,
  6. required Widget ack,
  7. required String time,
  8. required Color timeLabelColor,
  9. required bool showLoadingOverlay,
  10. required double percentage,
  11. required VoidCallback onTap,
  12. BoxConstraints? imageStyles,
  13. Color? messageReplyBgColor,
  14. Color? messageReplyBorderColor,
  15. required Widget? messageReply,
  16. TextStyle? textStyle,
  17. Uint8List? imageBytes,
})

Implementation

const ImageWithoutCaption(
    {super.key,
    required this.imgUrl,
    required this.constraints,
    required this.color,
    required this.isMe,
    required this.ack,
    required this.time,
    required this.timeLabelColor,
    required this.showLoadingOverlay,
    required this.percentage,
    required this.onTap,
    this.imageStyles,
    this.messageReplyBgColor,
    this.messageReplyBorderColor,
    required this.messageReply,
    this.textStyle,
    this.imageBytes});