copyWith method

PrintYearOption copyWith({
  1. ID? id,
})

Implementation

PrintYearOption copyWith({
  ID? id,
}) {
  return PrintYearOption(
    id: id ?? this.id,
  );
}