doesNotReturnNullableStream property

ProcessorError doesNotReturnNullableStream

Implementation

ProcessorError get doesNotReturnNullableStream {
  return ProcessorError(
    message: 'Queries returning streams of single elements might emit null.',
    todo:
        'Make the method return a Stream of a nullable type e.g. Stream<Person?>.',
    element: _methodElement,
  );
}