separator function

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

Implementation

Widget separator({double? height, Color? color, double? indent, double? endIndent, double? thickness = 1, double? hor}) {
  return Divider(height: height ?? 1, indent: indent ?? hor, endIndent: endIndent ?? hor, thickness: thickness, color: color);
}