NavigationDivider constructor

const NavigationDivider({
  1. Key? key,
  2. double? thickness,
  3. Color? color,
})

Creates a navigation divider.

Parameters:

  • thickness (double?): Line thickness
  • color (Color?): Divider color

Implementation

const NavigationDivider({super.key, this.thickness, this.color});