VanCellGroup constructor

const VanCellGroup({
  1. Key? key,
  2. List<VanCell> children = const <VanCell>[],
  3. Color backgroundColor = VanColor.white,
  4. String title = '',
  5. bool inset = false,
  6. bool border = true,
})

Implementation

const VanCellGroup({
  Key? key,
  this.children = const <VanCell>[],
  this.backgroundColor = VanColor.white,
  this.title = '',
  this.inset = false,
  this.border = true,
}) : super(key: key);