ShopPage constructor

const ShopPage({
  1. Key? key,
  2. required List<ChatMessage> messages,
  3. required ScrollController scrollController,
  4. dynamic onImageSelected(
    1. String
    )?,
  5. dynamic onFeedback(
    1. String,
    2. List<String>
    )?,
})

Implementation

const ShopPage({
  super.key,
  required this.messages,
  required this.scrollController,
  this.onImageSelected,
  this.onFeedback,
});