getGrandchildString method

String? getGrandchildString(
  1. String childKey,
  2. String grandChildKey
)

Gets a grandchild value as String.

Implementation

String? getGrandchildString(String childKey, String grandChildKey) =>
    getGrandchild(childKey, grandChildKey) as String?;