postInBg method
Sends a POST request in the background.
endPoint
- The API endpoint to which the request is sent.
param
- The parameters to include in the request body.
headers
- The request headers.
Returns a Future containing a Map<String, dynamic> with the response.
Implementation
Future<Map<String, dynamic>> postInBg(String endPoint,
Map<String, dynamic> param, Map<String, dynamic> headers) =>
_apiManagerImpl.postInBg(endPoint, param, headers);