post method

Future<Response> post(
  1. String urlPart
)

Implementation

Future<http.Response> post(String urlPart) async {
  return http.post(Uri.dataFromString(baseUrl.combine('/', urlPart)));
}