isFixedLength

Get whether the constraints define a fixed length entry, when minLength == maxLength. // TODO : fix CBOR processor so this function can be refactored into a public property: val isFixedLength: Boolean get() = minLength == maxLength currently, generates PassphraseConstraints_Cbor.kt that instantiates PassphraseConstraints with an invalid constructor signature, such as, "return PassphraseConstraints(isFixedLength, minLength, maxLength, requireNumerical)"

Return

true if this object's properties minLength and maxLength are the same, else false