replaceMustachesWithList method
- 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: '{{');