copyWith method

Implementation

BorderSideAttribute copyWith(BorderSideAttribute? other) {
  return BorderSideAttribute(
    color: other?.color ?? color,
    width: other?.width ?? width,
    style: other?.style ?? style,
  );
}