How does Flutter receives a POST request with the payload from a web application. My flutter app must consume/process the post
I am integrating a HTML based payment gateway to a flutter app. Once the payment is complete, the gateway will do a POST request tom my flutter appl with all transaction details. My flutter app must consume/process and store these details.
How does flutter consume/receive POST request from the internet?