SystemUtils constructor

SystemUtils()

Factory constructor to ensure exception. Throws an exception if an attempt is made to instantiate this class.

Implementation

factory SystemUtils() {
  throw UnsupportedError(
    "Cannot instantiate SystemUtils. Use only static methods.",
  );
}