insert1 method

AFTranslationID insert1(
  1. dynamic value
)
inherited

Used to insert values into translated text.

The translation can reference the values using {0}, {1}... {n} allowing you to change the word/value order for different locales.

Implementation

AFTranslationID insert1(dynamic value) {
  final lib = library;
  if(lib == null) AFID.throwLibNotNull();
  return AFTranslationID(codeId, lib, values: [value]);
}