setLocationDefault method

Future<bool> setLocationDefault(
  1. dynamic params
)

Implementation

Future<bool> setLocationDefault(params) async {
  NetworkResponse response = await _api.setLocationDefault(params);
  return response.data ?? false;
}