nestedKey method

GetDelegate? nestedKey(
  1. String? key
)

Function to retrieve a nested delegate by its key.

Parameters:

  • key: The key of the nested delegate to retrieve.

Returns: The nested delegate associated with the given key, if found. If no key is provided, returns the root delegate.

Implementation

GetDelegate? nestedKey(String? key) {
  return rootController.nestedKey(key);
}