replaceMustachesWithMap method

String replaceMustachesWithMap(
  1. Map<String, dynamic> params
)

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: "{{");