apply property
set
apply
(NikuEdgeInsets? v)
Implementation
set apply(NikuEdgeInsets? v) {
if (v == null) return;
top = v.top ?? top;
left = v.left ?? left;
bottom = v.bottom ?? bottom;
right = v.right ?? right;
}