AnimatedBorderRadius.vertical constructor

AnimatedBorderRadius.vertical({
  1. double? top,
  2. double? bottom,
})

Implementation

factory AnimatedBorderRadius.vertical({
  double? top,
  double? bottom,
}) {
  return AnimatedBorderRadius._(
    top,
    top,
    bottom,
    bottom,
  );
}