String getString(String? id) { if (id == null || id.isEmpty) { return ""; } return AppLocalizations.of(this)?.getString(id) ?? ''; }