MessageAction constructor

const MessageAction({
  1. required String label,
  2. String? route,
  3. String? url,
  4. String? actionId,
})

Implementation

const MessageAction({
  required this.label,
  this.route,
  this.url,
  this.actionId,
});