merge method
Implementation
ZeroSkeletonStyleSet merge(ZeroSkeletonStyleSet? other) {
if (other == null) return this;
return ZeroSkeletonStyleSet(
avatar: avatar?.merge(other.avatar) ?? other.avatar,
line: line?.merge(other.line) ?? other.line,
listTile: listTile?.merge(other.listTile) ?? other.listTile,
paragraph: paragraph?.merge(other.paragraph) ?? other.paragraph,
);
}