StreamDirectRawPredictRequest constructor

StreamDirectRawPredictRequest({
  1. required String endpoint,
  2. String methodName = '',
  3. Uint8List? input,
})

Implementation

StreamDirectRawPredictRequest({
  required this.endpoint,
  this.methodName = '',
  Uint8List? input,
}) : input = input ?? Uint8List(0),
     super(fullyQualifiedName);