vInputTheme property

VInputTheme vInputTheme

Implementation

VInputTheme get vInputTheme {
  final VInputTheme? theme = Theme.of(this).extension<VInputTheme>();
  if (theme == null) {
    if (isDark) {
      return VInputTheme.dark();
    } else {
      return VInputTheme.light();
    }
  }
  return theme;
}