copyWith method

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

Implementation

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