replaceMustachesWithMap method
Replaces the placeholders in the String with the values from the provided params map.
The placeholders are defined by the {{key}} format.
Implementation
String replaceMustachesWithMap(Map<String, dynamic> params) => replaceWrappedWithMap(values: params, openWrapChar: "{{");