copyFrom method

  1. @override
AntdCascaderAnimation copyFrom(
  1. covariant AntdCascaderAnimation? style
)
override

Implementation

@override
AntdCascaderAnimation copyFrom(covariant AntdCascaderAnimation? style) {
  return AntdCascaderAnimation(
    disable: style?.disable ?? disable,
    duration: style?.duration ?? duration,
    maskAnimated: style?.maskAnimated ?? maskAnimated,
    contentAnimated: style?.contentAnimated ?? contentAnimated,
  );
}