getAddressByPhone method

Future<Result> getAddressByPhone(
  1. String phone
)

Retrieve saved addresses associated with phone.

Implementation

Future<Result<dynamic>> getAddressByPhone(String phone) async {
  return await ApiService.getAddressByPhone(phone);
}