Result constructor

Result({
  1. bool? success,
  2. bool? completion,
  3. String? response,
  4. Score? score,
  5. Map<String, dynamic>? extensions,
})

Implementation

Result({
  this.success,
  this.completion,
  this.response,
  this.score,
  this.extensions,
});