apiIblV1StripePostPost method

Future apiIblV1StripePostPost(
  1. Map body, [
  2. bool? isMultipart
])

Implementation

Future<dynamic> apiIblV1StripePostPost(Map body, [bool? isMultipart]) async {
  var response;
  if (isMultipart == null || isMultipart == false) {
    response = await http.post(
        Uri.parse('$webBaseUrl/api/ibl/v1/stripe/post'),
        headers: _headers(),
        body: json.encode(body));
  } else {
    response = await sendMultipartRequest(
        '$webBaseUrl/api/ibl/v1/stripe/post', 'post', body);
  }
  return json.decode(response.body);
}