saveFile method

Future<Response> saveFile(
  1. String filePath
)

Implementation

Future<http.Response> saveFile(String filePath) async {
return _client.postFile('/api/storage', filePath);
  }