copyWith method

CommentLinks copyWith({
  1. String? webui,
})

Implementation

CommentLinks copyWith({String? webui}) {
  return CommentLinks(
    webui: webui ?? this.webui,
  );
}