auto_unix_sneath_terminal function

SneathTerminal auto_unix_sneath_terminal()

Implementation

SneathTerminal auto_unix_sneath_terminal() {
  // This assumes that all other platforms that dart
  // can run on are unix based and have the libs needed
  // by the unix implementation, which may not always
  // be the case.
  if (Platform.isMacOS) {
    return auto_unix_macos_sneath_terminal();
  } else {
    return auto_unix_generic_sneath_terminal();
  }
}