UnknownContentIndicator constructor

const UnknownContentIndicator({
  1. Key? key,
  2. required ContentItem contentItem,
  3. required Widget child,
  4. List<Action?> actions = const [],
  5. List<Condition?> conditions = const [],
  6. LayoutConfiguration<ContentItem>? layout,
  7. bool showDetailOnTap = true,
})

Implementation

const UnknownContentIndicator({
  super.key,
  required this.contentItem,
  required this.child,
  this.actions = const [],
  this.conditions = const [],
  this.layout,
  this.showDetailOnTap = true,
});