replaceVariables static method

String replaceVariables(
  1. String s,
  2. String replace(
    1. Match match
    )
)

Implementation

static String replaceVariables(
        String s, String Function(Match match) replace) =>
    s.replaceAllMapped(_regexpVariable, replace);