CommitTextParameters constructor

CommitTextParameters({
  1. required int contextId,
  2. required String text,
})

Implementation

CommitTextParameters({
  /// ID of the context where the text will be committed
  required int contextId,

  /// The text to commit
  required String text,
}) : _wrapped = $js.CommitTextParameters(
        contextID: contextId,
        text: text,
      );