FineTuning constructor

FineTuning({
  1. required bool fineTuningRequested,
  2. required FineTuningState fineTuningState,
  3. required bool isAllowedToFineTune,
  4. Language? language,
  5. String? modelId,
  6. List<String>? sliceIds,
  7. required List<VerificationAttempt>? verificationAttempts,
  8. required int verificationAttemptsCount,
  9. required List<String> verificationFailures,
  10. bool? manualVerification,
})

Implementation

FineTuning({
  required this.fineTuningRequested,
  required this.fineTuningState,
  required this.isAllowedToFineTune,
  this.language,
  this.modelId,
  this.sliceIds,
  required this.verificationAttempts,
  required this.verificationAttemptsCount,
  required this.verificationFailures,
  this.manualVerification,
});