copyWith method

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

Implementation

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