copyFrom method

AntdRadiusDefine copyFrom(
  1. AntdRadiusDefine? source
)

Implementation

AntdRadiusDefine copyFrom(AntdRadiusDefine? source) {
  return AntdRadiusDefine(
    seed: source?.seed ?? seed,
    lg: source?.lg ?? lg,
    sm: source?.sm ?? sm,
    xs: source?.xs ?? xs,
    outer: source?.outer ?? outer,
  );
}