SetCandidateWindowPropertiesParameters constructor

SetCandidateWindowPropertiesParameters({
  1. required String engineId,
  2. required SetCandidateWindowPropertiesParametersProperties properties,
})

Implementation

SetCandidateWindowPropertiesParameters({
  /// ID of the engine to set properties on.
  required String engineId,
  required SetCandidateWindowPropertiesParametersProperties properties,
}) : _wrapped = $js.SetCandidateWindowPropertiesParameters(
        engineID: engineId,
        properties: properties.toJS,
      );