replaceAll static method

String replaceAll(
  1. String? string,
  2. Pattern from,
  3. String replace
)

Refer to Safe.replaceAll

Implementation

static String replaceAll(String? string, Pattern from, String replace) =>
    Safe.replaceAll(string, from, replace);