lxVar method

LxVar<T> lxVar({
  1. String? named,
  2. bool isSensitive = false,
})

Wraps this value in a reactive LxVar with optional configuration.

Implementation

LxVar<T> lxVar({String? named, bool isSensitive = false}) =>
    LxVar<T>(this, name: named, isSensitive: isSensitive);