trWithOption method
Implementation
String trWithOption({
String? name,
String? defaultValue,
String Function(String)? replace,
bool applyNumber = false,
bool applyRtl = false,
}) {
return Translation.localize(
toString(),
name: name,
defaultValue: defaultValue,
replace: replace,
applyNumber: applyNumber,
applyRtl: applyRtl,
);
}