setThumbnailForProFromSA method

Future<String?> setThumbnailForProFromSA(
  1. dynamic bytes,
  2. dynamic path,
  3. dynamic proId
)

Implementation

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