isPreeditInContainer method

bool isPreeditInContainer(
  1. String containerId
)

Returns true if the given container id is the one hosting the active preedit.

Implementation

bool isPreeditInContainer(String containerId) {
  return _isComposing && _preeditContainerId == containerId;
}