trimOct property

int get trimOct

Remove first char from string list

Implementation

int get trimOct {
  List<String> charArray = this.split(' ');
  return int.parse(charArray.first);
}