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