replaceAllMapped static method

String replaceAllMapped(
  1. String? string,
  2. Pattern from,
  3. String replace(
    1. Match match
    )
)

Refer to Safe.replaceAllMapped

Implementation

static String replaceAllMapped(
  String? string,
  Pattern from,
  String Function(Match match) replace,
) => Safe.replaceAllMapped(string, from, replace);