addAddress method

Future<Result> addAddress(
  1. Map<String, dynamic> body
)

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);
}