FitView constructor

const FitView({
  1. Key? key,
  2. required List<Widget> children,
  3. Color? dividerColor,
  4. double dividerSize = 1,
})

Implementation

const FitView({
  super.key,
  required this.children,
  this.dividerColor,
  this.dividerSize = 1,
});