unixEOL method

bool unixEOL(
  1. String fileContent
)

Implementation

bool unixEOL(String fileContent) {
  if (detectEOL(fileContent) == '\n') return true;
  return false;
}