acdDivider method
Implementation
ACDDialog acdDivider({color, height}) {
return widget(
Divider(
color: color ?? Colors.grey[300],
height: height ?? 0.1,
),
);
}
ACDDialog acdDivider({color, height}) {
return widget(
Divider(
color: color ?? Colors.grey[300],
height: height ?? 0.1,
),
);
}