itemStyle method

LipList itemStyle(
  1. Style style
)

Sets a static style for all items.

Implementation

LipList itemStyle(Style style) {
  _itemStyleFunc = (_, _) => style;
  _syncRenderer();
  return this;
}