editorField property

String editorField

The name of the editor field.

Implementation

String get editorField {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EditFieldsInfo_getEditorField(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}