customDivider function

Widget customDivider({
  1. double? height,
  2. double? thickness,
  3. double? indent = 30,
  4. double? endIndent = 30,
  5. Color? color,
})

Implementation

Widget customDivider({
  double? height,
  double? thickness,
  double? indent = 30,
  double? endIndent = 30,
  Color? color,
}) {
  return Divider(
    indent: indent,
    endIndent: endIndent,
    color: color,
    height: height,
    thickness: thickness,
  );
}