FItemData constructor

const FItemData({
  1. FItemStyle? style,
  2. double spacing = 0,
  3. FWidgetStateMap<Color> dividerColor = const FWidgetStateMap({WidgetState.any : Colors.transparent}),
  4. double dividerWidth = 0,
  5. FItemDivider divider = FItemDivider.none,
  6. bool enabled = true,
  7. int index = 0,
  8. bool last = true,
  9. bool globalLast = true,
})

Creates a new FItemData.

Implementation

const FItemData({
  this.style,
  this.spacing = 0,
  this.dividerColor = const FWidgetStateMap({WidgetState.any: Colors.transparent}),
  this.dividerWidth = 0,
  this.divider = FItemDivider.none,
  this.enabled = true,
  this.index = 0,
  this.last = true,
  this.globalLast = true,
});