controllerById method

  1. @override
StateXController? controllerById(
  1. String? id
)
inherited

Retrieve a StateXController by its a unique String identifier.

Implementation

@override
StateXController? controllerById(String? id) {
  if (id == null || id.isEmpty) {
    return null;
  }
  return _mapControllerById[id];
}