rounded property
Sets rounded or sharp border of the containing box and the icon style.
Defaults to true
.
Implementation
bool get rounded {
try {
if ((widget as dynamic).rounded != null && (widget as dynamic).rounded is bool) {
return (widget as dynamic).rounded as bool;
}
} catch (e) {
/// Ignore error
}
return ZetaRoundedScope.of(this)?._rounded ?? Zeta.of(this).rounded;
}