maxDivideThick function
Implementation
Widget maxDivideThick({height, color, margin}) {
return Container(
height: height ?? 2,
color: color ?? Colors.grey.shade50,
margin: margin ?? EdgeInsets.zero,
);
}
Widget maxDivideThick({height, color, margin}) {
return Container(
height: height ?? 2,
color: color ?? Colors.grey.shade50,
margin: margin ?? EdgeInsets.zero,
);
}