LayoutUtils constructor

LayoutUtils()

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

Implementation

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