QuickReply constructor

QuickReply({
  1. required String title,
  2. String? value,
  3. Map<String, dynamic>? customProperties,
})

Implementation

QuickReply({
  required this.title,
  this.value,
  this.customProperties,
});