FItemData constructor
      const
      FItemData({ 
    
- FItemStyle? style,
- double spacing = 0,
- FWidgetStateMap<Color> dividerColor = const FWidgetStateMap({WidgetState.any : Colors.transparent}),
- double dividerWidth = 0,
- FItemDivider divider = FItemDivider.none,
- bool enabled = true,
- int index = 0,
- bool last = true,
- 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,
});