divider static method

Widget divider({
  1. double? height,
})

Standard Divider

Implementation

static Widget divider({double? height}) {
  return Divider(height: height, color: theme()!.dividerColor);
}