FolderViewLineTheme constructor

const FolderViewLineTheme({
  1. required Color lineColor,
  2. double lineWidth = 1.5,
  3. LineStyle lineStyle = LineStyle.connector,
})

Creates a FolderViewLineTheme with the given properties

Implementation

const FolderViewLineTheme({
  required this.lineColor,
  this.lineWidth = 1.5,
  this.lineStyle = LineStyle.connector,
});