ChatEventItemAction constructor

const ChatEventItemAction({
  1. required String title,
  2. dynamic onPressed(
    1. BuildContext context,
    2. String roomId,
    3. String userId,
    4. dynamic data,
    )?,
  3. bool highlight = false,
})

Implementation

const ChatEventItemAction({
  required this.title,
  this.onPressed,
  this.highlight = false,
});