copyWith method

RubricId copyWith({
  1. int? value,
})

Implementation

RubricId copyWith({
  int? value
}) {
  return RubricId(
    value ?? this.value
  );
}