post method

Future<List<int>> post(
  1. String path,
  2. Uint8List data
)

Make an HTTP POST request with failover support

Implementation

Future<List<int>> post(String path, Uint8List data) async {
  return await _request(path, 'POST', data);
}