WidgetContent constructor

const WidgetContent({
  1. required String title,
  2. String description = '',
  3. String imageUrl = '',
  4. List<WidgetAction> actions = const [],
})

Implementation

const WidgetContent({
  required this.title,
  this.description = '',
  this.imageUrl = '',
  this.actions = const [],
});