addAddress method
Save a new address for the current user.
body should contain the address fields expected by the API.
Implementation
Future<Result<dynamic>> addAddress(Map<String, dynamic> body) async {
return await ApiService.addAddress(body);
}