FeedbackService constructor

FeedbackService(
  1. FirebaseFirestore _firestore, {
  2. String? feedbackCollectionPath = 'feedbacks',
})

FeedbackService is the main service to submit the user feedbacks to the Cloud Firestore.

Implementation

FeedbackService(
  this._firestore, {
  this.feedbackCollectionPath = 'feedbacks',
});