copyWith method

BorderAttribute copyWith(
  1. BorderAttribute other
)

Implementation

BorderAttribute copyWith(BorderAttribute other) {
  return BorderAttribute(
    left: left?.copyWith(other.left),
    top: top?.copyWith(other.top),
    right: right?.copyWith(other.right),
    bottom: bottom?.copyWith(other.bottom),
  );
}