get static method

NUITheme get()

Implementation

static NUITheme get(){
  if(_instance == null){
    throwNUI("NUITheme", "You have not initialized NUITheme with the builder");
  }

  assert(_instance != null);
  return _instance!;
}