copyFrom method
Implementation
AntdFontDefine copyFrom(AntdFontDefine? source) {
return AntdFontDefine(
lg: source?.lg ?? lg,
md: source?.md ?? md,
ms: source?.ms ?? ms,
sm: source?.sm ?? sm,
xl: source?.xl ?? xl,
xs: source?.xs ?? xs,
xxl: source?.xxl ?? xxl,
xxs: source?.xxs ?? xxs,
);
}