divider function

dynamic divider({
  1. double thickness = 1.0,
  2. double height = 5.0,
})

Get the divider widget thickness of 1.0

Implementation

divider({double thickness = 1.0, double height = 5.0}) {
  return Divider(
    thickness: thickness,
    height: height,
  );
}