copyFrom method
Implementation
@override
AntdSelectionStyle copyFrom(AntdSelectionStyle? style) {
return AntdSelectionStyle(
heightStyle: style?.heightStyle ?? heightStyle,
widthStyle: style?.widthStyle ?? widthStyle,
color: style?.color ?? color,
enable: style?.enable ?? enable,
);
}