divider method
Implementation
Widget divider() {
return Divider(
thickness: 0.1,
color: const Color(0xFFD7D7D7).withOpacity(1), //// The color to use when painting the line.
height: 4,
);
}
Widget divider() {
return Divider(
thickness: 0.1,
color: const Color(0xFFD7D7D7).withOpacity(1), //// The color to use when painting the line.
height: 4,
);
}