removeComments method
Removes all the comment from the line.
Implementation
String removeComments(String line) {
  return line.replaceAllMapped(RegExp(r'#.*'), (match) {
    return '';
  });
}Removes all the comment from the line.
String removeComments(String line) {
  return line.replaceAllMapped(RegExp(r'#.*'), (match) {
    return '';
  });
}