setThumbnailForPcEvent method

Future<String?> setThumbnailForPcEvent(
  1. dynamic path,
  2. dynamic pcEventId
)

Implementation

Future<String?> setThumbnailForPcEvent(path, pcEventId) async {
  NetworkResponse response =
      await _api.setThumbnailForPcEvent(path, pcEventId);
  return response.data;
}