AiModelCheck constructor

const AiModelCheck({
  1. required String model,
  2. required bool ok,
  3. String? error,
  4. int? latencyMs,
})

Implementation

const AiModelCheck({
  required this.model,
  required this.ok,
  this.error,
  this.latencyMs,
});