DetectRequestModel constructor

const DetectRequestModel({
  1. required List<String> q,
})

Implementation

const factory DetectRequestModel({
  /// The input text upon which to perform language detection. Repeat this
  /// parameter to perform language detection on multiple text inputs.
  required List<String> q,
}) = _DetectRequestModel;