LogProb constructor

const LogProb({
  1. required List<int> bytes,
  2. required num logprob,
  3. required String token,
  4. List<TopLogProb>? topLogprobs,
})

Implementation

const LogProb({
  required this.bytes,
  required this.logprob,
  required this.token,
  this.topLogprobs,
});