createFirebasePaymentID static method
Generates a new Firebase document ID for a payment transaction.
This method creates a new document ID in the 'razorpayPaymentTransaction' collection and returns it for use in creating a transaction record.
Implementation
static String createFirebasePaymentID() {
final id = _firestore.collection('razorpayPaymentTransaction').doc().id;
return id;
}