DraftModeUIListText constructor

const DraftModeUIListText({
  1. Key? key,
  2. required List<String> items,
  3. bool monospace = false,
  4. Widget? emptyPlaceholder,
  5. Widget? header,
  6. Future<void> onRefresh()?,
  7. EdgeInsetsGeometry? padding,
})

Implementation

const DraftModeUIListText({
  super.key,
  required this.items,
  this.monospace = false,
  this.emptyPlaceholder,
  this.header,
  this.onRefresh,
  this.padding,
});