toUnicodeIf method

String toUnicodeIf(
  1. bool condition
)

Implementation

String toUnicodeIf(bool condition) {
  return condition ? toUnicode : this;
}