value property

T get value

Implementation

T get value {
  if (context.isDark) {
    return dark ?? light;
  } else {
    return light;
  }
}