yeah. also theres been cases where you do a ton of...
# announcements
a
yeah. also theres been cases where you do a ton of :
Copy code
String getAgeExtra() {
  return getArguments().getString(key, "");
}

String setAgeExtra(String age) {
  getArguments().putString(key, age);
}
you can create a “virtual” property that wraps it:
Copy code
val age: String by bundleArg(key)