Result constructor

Result({
  1. required String? message,
  2. required String? input,
  3. required List<Prediction> prediction,
  4. required int? page,
  5. required String? requestFileId,
  6. required String? filepath,
  7. required String? id,
  8. required int? rotation,
  9. required String? fileUrl,
  10. required String? requestMetadata,
  11. required String? processingType,
})

Implementation

Result({
  required this.message,
  required this.input,
  required this.prediction,
  required this.page,
  required this.requestFileId,
  required this.filepath,
  required this.id,
  required this.rotation,
  required this.fileUrl,
  required this.requestMetadata,
  required this.processingType,
});