setGeneral method

void setGeneral (String text, dynamic images, String url, String title, SSDKContentType contentType)

Implementation

void setGeneral(String text, dynamic images, String url, String title,
    SSDKContentType contentType) {
  map[kType] = contentType.value;
  map[kText] = text;
  map[kTitle] = title;
  map[kImages] = images;
  map[kUrl] = url;
}