censorString method

  1. @Deprecated('This method has been renamed to `censor()`')
String censorString(
  1. String inputString, {
  2. String? replaceWith,
})

Implementation

@Deprecated('This method has been renamed to `censor()`')
String censorString(String inputString, {String? replaceWith}) {
  return censor(inputString, replaceWith: replaceWith);
}