setKuaiShou method
void
setKuaiShou()
Implementation
void setKuaiShou(
String title,
String desc,
String linkURL,
String thumbImage,
String openID,
String receiverOpenID,
String localIdentifier,
List tags,
String extraInfo,
SSDKContentType type) {
Map params = {};
params[kType] = type.value;
params[kTitle] = title;
params[kDesc] = desc;
params[kLinkURL] = linkURL;
params["thumbImage"] = thumbImage;
params["openID"] = openID;
params["receiverOpenID"] = receiverOpenID;
params["localIdentifier"] = localIdentifier;
params["tags"] = tags;
params["extraInfo"] = extraInfo;
int? id = ShareSDKPlatforms.kuaishou.id;
map["@platform($id)"] = params;
}