RCKItemConfig constructor

const RCKItemConfig({
  1. double height = 76.0,
  2. Color? backgroundColor,
  3. Color? pinnedBackgroundColor,
  4. Color? dividerColor,
  5. double dividerIndent = 0.0,
  6. double dividerEndIndent = 0.0,
  7. double dividerHeight = 1.0,
  8. EdgeInsets padding = const EdgeInsets.symmetric(vertical: itemVerticalPadding, horizontal: itemHorizontalPadding),
  9. double cellSpacing = 0.0,
})

Implementation

const RCKItemConfig({
  this.height = 76.0,
  this.backgroundColor,
  this.pinnedBackgroundColor,
  this.dividerColor,
  this.dividerIndent = 0.0,
  this.dividerEndIndent = 0.0,
  this.dividerHeight = 1.0,
  this.padding = const EdgeInsets.symmetric(
      vertical: itemVerticalPadding, horizontal: itemHorizontalPadding),
  this.cellSpacing = 0.0,
});