current property

Implementation

NeumorphicThemeData? get current {
  if (useDark) {
    return darkTheme;
  } else {
    return theme;
  }
}