copyFrom method

AntdShadowDefine copyFrom(
  1. AntdShadowDefine? other
)

Implementation

AntdShadowDefine copyFrom(AntdShadowDefine? other) {
  if (other == null) return this;

  return AntdShadowDefine(
    primary: other.primary,
    secondary: other.secondary,
    tertiary: other.tertiary,
  );
}