country property

TextFieldWrapper? get country

Issuing country of the document

Implementation

TextFieldWrapper? get country => document
    .fieldByTypeName("Country")
    ?.let((field) => TextFieldWrapper(field));