checkBarGooglePlaceIdByContributor method

Future<String?> checkBarGooglePlaceIdByContributor(
  1. dynamic googlePlaceId
)

Implementation

Future<String?> checkBarGooglePlaceIdByContributor(googlePlaceId) async {
  NetworkResponse response =
      await _api.checkBarGooglePlaceIdByContributor(googlePlaceId);
  return response.data;
}