apply property
Implementation
set apply(NikuIcon? v) {
if (v == null) return;
size = v.size ?? size;
color = v.color ?? color;
semanticLabel = v.semanticLabel ?? semanticLabel;
textDirection = v.textDirection ?? textDirection;
$parent..$merge(v.$parent);
}