In my flutter app do I need to put the following block of code in my project to manage the certificates for purchase for their respective environment testing and production which is given by there official website but i am using the flutters in_app_purchase package.so can i publish my app without adding the following block of code
https://developer.apple.com/documentation/xcode/setting-up-storekit-testing-in-xcode
#if DEBUG
let certificate = "StoreKitTestCertificate"
#else
let certificate = "AppleIncRootCertificate"
#endif