localizes method

List<String> localizes(
  1. String key, {
  2. List<String>? defaultValue,
  3. String replace(
    1. String
    )?,
  4. bool applyNumber = false,
  5. bool applyRtl = false,
  6. Map<String, Object?>? args,
})

Implementation

List<String> localizes(
  String key, {
  List<String>? defaultValue,
  String Function(String)? replace,
  bool applyNumber = false,
  bool applyRtl = false,
  Map<String, Object?>? args,
}) {
  return Translation.localizes(
    key,
    name: name,
    defaultValue: defaultValue,
    replace: replace,
    applyNumber: applyNumber,
    applyRtl: applyRtl,
    args: args,
  );
}