ImageMessageWidget constructor

const ImageMessageWidget({
  1. Key? key,
  2. required String uri,
  3. String? text,
  4. required bool isAuthor,
  5. bool? shouldHideText,
  6. bool? shouldFitToAvailableSize,
})

Constructor of the Image Message Widget

Implementation

const ImageMessageWidget(
    {super.key,
    required this.uri,
    this.text,
    required this.isAuthor,
    this.shouldHideText,
    this.shouldFitToAvailableSize});