setPodName abstract method

void setPodName(
  1. String name
)

Sets the name under which this component is registered in the PodFactory.

This method is called automatically by the framework during component initialization with the exact name used for pod registration.

Parameters:

  • name: The registration name of this pod in the PodFactory

Example:

@override
void setPodName(String name) {
  _podName = name;
  logger.info('Pod "$name" initialized successfully');
}

Implementation

void setPodName(String name);