col property

int get col

Implementation

int get col {
  int index = location.indexOf(':');
  index = location.indexOf(':', index + 1);
  index = location.indexOf(':', index + 1);

  return int.parse(location.substring(index + 1));
}