replaceRange static method

String replaceRange(
  1. String? string,
  2. int start,
  3. int? end,
  4. String replacement,
)

Refer to Safe.replaceRange

Implementation

static String replaceRange(
  String? string,
  int start,
  int? end,
  String replacement,
) => Safe.replaceRange(string, start, end, replacement);