szInfoTitle property

String szInfoTitle

Implementation

String get szInfoTitle {
  final charCodes = <int>[];
  for (var i = 0; i < 64; i++) {
    if (_szInfoTitle[i] == 0x00) break;
    charCodes.add(_szInfoTitle[i]);
  }
  return String.fromCharCodes(charCodes);
}
void szInfoTitle=(String value)

Implementation

set szInfoTitle(String value) {
  final stringToStore = value.padRight(64, '\x00');
  for (var i = 0; i < 64; i++) {
    _szInfoTitle[i] = stringToStore.codeUnitAt(i);
  }
}