setThumbnailForUserFromSA method

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

Implementation

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