getPromotedVideosForBar method

Future<List<String>> getPromotedVideosForBar(
  1. dynamic oobrPlaceId
)

Implementation

Future<List<String>> getPromotedVideosForBar(oobrPlaceId) async {
  NetworkResponse response = await _api.getPromotedVideosForBar(oobrPlaceId);
  return response.data ?? [];
}