icuForm function

String icuForm(
  1. MainMessage message
)

Return a version of the message string with with ICU parameters "{variable}" rather than Dart interpolations "$variable".

Implementation

String icuForm(MainMessage message) =>
    message.expanded(turnInterpolationIntoICUForm);