ContentCallout constructor

const ContentCallout({
  1. String type = 'info',
  2. String? title,
  3. required List<Component> children,
})

Implementation

const ContentCallout({
  this.type = 'info',
  this.title,
  required this.children,
});