strProfileXml property

String strProfileXml

Implementation

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

Implementation

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