AnimatedBorderRadius.only constructor

AnimatedBorderRadius.only({
  1. double? topLeft,
  2. double? topRight,
  3. double? bottomLeft,
  4. double? bottomRight,
})

Implementation

factory AnimatedBorderRadius.only({
  double? topLeft,
  double? topRight,
  double? bottomLeft,
  double? bottomRight,
}) {
  return AnimatedBorderRadius._(
    topLeft,
    topRight,
    bottomLeft,
    bottomRight,
  );
}