unMix property

String? get unMix

Implementation

String? get unMix {
  if (safeLength < 6) return this;
  var res = this!;
  for (var i = res.length ~/ 2 - 1; i > -1; i--) {
    res = res.substring(res.length - (i + 1)) + res.substring(i + 1, res.length - (i + 1)) + res.substring(0, i + 1);
  }
  return res.substring(0, res.length - 6);
}