replaceMustachesWithList method

String replaceMustachesWithList(
  1. Iterable params
)

Replaces the placeholders in the String with the values from the provided params list. The placeholders are indexes surrounded by {{ and }}.

Implementation

String replaceMustachesWithList(Iterable<dynamic> params) => replaceWrappedWithList(values: params, openWrapChar: '{{');