LLMCredential constructor

LLMCredential({
  1. required String name,
  2. required String platform,
  3. Object? value,
})

Returns a new LLMCredential instance.

Implementation

LLMCredential({
  required this.name,
  required this.platform,
  this.value,
});