getChildString method
Returns the value for childKey as a String, or null if the key is
missing or the value is not a String.
Audited: 2026-06-12 11:26 EDT
Implementation
@useResult
String? getChildString(String childKey) {
final dynamic value = this[childKey];
return value is String ? value : null;
}