lineBreakInterval

@JvmField
var lineBreakInterval: Byte(source)

For every lineBreakInterval of encoded data, a line break will be output.

Will ONLY output line breaks if isLenient is set to true.

e.g.

isLenient = true
lineBreakInterval = 0
// 91IMOR3F41BMUSJCCGGG====

isLenient = true
lineBreakInterval = 16
// 91IMOR3F41BMUSJC
// CGGG====

isLenient = false
lineBreakInterval = 16
// 91IMOR3F41BMUSJCCGGG====

Enable by setting to a value between 1 and 127, and setting isLenient to true.

A great value is 64

Default: 0