FastDivider constructor

const FastDivider({
  1. Key? key,
  2. double height = kFastBorderSize,
  3. Color? color,
})

Implementation

const FastDivider({
  Key? key,
  this.height = kFastBorderSize,
  this.color,
}) : super(key: key);