convertEmoticons function

String convertEmoticons(
  1. String text, [
  2. EmoticonStyle style = EmoticonStyle.western
])

Replaces all common smileys with their ASCII representation

text the text that may contain smileys style the optional emoticon style

Implementation

String convertEmoticons(String text,
    [EmoticonStyle style = EmoticonStyle.western]) {
  return EmoticonConverter.convertEmoticons(text, style);
}