ScreenUtil constructor

ScreenUtil()

Implementation

factory ScreenUtil() {
  assert(
    _instance != null,
    '\nEnsure to initialize ScreenUtil before accessing it.\nPlease execute the init method : ScreenUtil.init()',
  );
  return _instance;
}