add method

dynamic add(
  1. S uiState
)

Implementation

add(S uiState) {
  debugPrint(uiState.runtimeType.toString());
  uiStatesSubject.add(uiState);
}