ChatButton constructor

const ChatButton({
  1. required String label,
  2. String? subtitle,
  3. ChatButtonStyle style = ChatButtonStyle.outlined,
  4. IconData? icon,
  5. String? imageUrl,
})

Implementation

const ChatButton({
  required this.label,
  this.subtitle,
  this.style = ChatButtonStyle.outlined,
  this.icon,
  this.imageUrl,
});