FLStaticSectionData constructor

const FLStaticSectionData({
  1. String? headerTitle,
  2. TextStyle? headerTitleStyle,
  3. double? headerHeight,
  4. double headerTitleIntent = kStaticHeaderTitleIntent,
  5. List<FLStaticItemData>? itemList,
  6. Color headerBackgroundColor = kStaticBackgroundColor,
})

Implementation

const FLStaticSectionData({
  this.headerTitle,
  this.headerTitleStyle,
  this.headerHeight,
  this.headerTitleIntent = kStaticHeaderTitleIntent,
  this.itemList,
  this.headerBackgroundColor = kStaticBackgroundColor,
})  : assert(itemList != null && itemList.length > 0),
      super();