buildString method
Implementation
String buildString() {
return '<region>\n' +
(sample != null ? 'sample=$sample\n' : '') +
(key != null ? 'key=$key\n' : '') +
(lokey != null ? 'lokey=$lokey\n' : '') +
(hikey != null ? 'hikey=$hikey\n' : '') +
(lovel != null ? 'lovel=$lovel\n' : '') +
(hivel != null ? 'hivel=$hivel\n' : '') +
(loopStart != null ? 'loop_start=$loopStart\n' : '') +
(loopEnd != null ? 'loop_end=$loopEnd\n' : '') +
(opcodeMapToString(otherOpcodes));
}