def __init__()

in src/simplify_docx/elements/form.py [0:0]


    def __init__(self, x: xmlFragment):
        super(ffData, self).__init__(x)

        _checkBox = x.checkBox
        if _checkBox is not None:
            self.checkBox = checkBox(_checkBox)

        _ddList = x.ddList
        if _ddList is not None:
            self.ddList = ddList(_ddList)

        _textInput = x.textInput
        if _textInput is not None:
            self.textInput = textInput(_textInput)