addConId method

String addConId(
  1. ControllerMVC con
)
inherited

Adds a 'Controller' to be associated with this StateMVC object and returns Controller's the unique 'key' identifier assigned to it.

Implementation

String addConId(ControllerMVC con) {
  final keyId = con.keyId;
  _map[keyId] = con;
  return keyId;
}