copyWith method

Implementation

ValidationOptionsForCreate copyWith(
    {List<ValidationOptionsForCreateLevels>? levels}) {
  return ValidationOptionsForCreate(
    levels: levels ?? this.levels,
  );
}