SuggestedActionCustom constructor

SuggestedActionCustom({
  1. required String name,
  2. FormattedText? title,
  3. FormattedText? description,
  4. required String url,
})

Implementation

SuggestedActionCustom({
  required this.name,
  this.title,
  this.description,
  required this.url,
});