simpleMessage static method

String Function() simpleMessage(
  1. dynamic translatedString
)

Return a function that returns the given string. An optimization for dart2js, used from the generated code.

Implementation

static String Function() simpleMessage(translatedString) =>
    () => translatedString;