init static method

void init({
  1. required AppTheme theme,
})

Initializes currentAppTheme as theme.

Implementation

static void init({required AppTheme theme}) {
  currentAppTheme = theme;
}