string to CharList List
List<String> toCharList(){ var chars = <String>[]; for(var i=0;i<this.length;i++){ chars.add(this[i]); } return chars; }