copyWith method

Implementation

BorderRadiusAttribute copyWith(BorderRadiusAttribute other) {
  return BorderRadiusAttribute(
    topLeft: other.topLeft,
    topRight: other.topRight,
    bottomLeft: other.bottomLeft,
    bottomRight: other.bottomRight,
  );
}