copyWith method

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

Implementation

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