textColor property

Color? get textColor

Implementation

Color? get textColor => _textColor?.get();
set textColor (dynamic v)

Implementation

set textColor(dynamic v) {
  if (_textColor != null) {
    _textColor!.set(v);
  } else if (v != null) {
    _textColor = ColorObservable(Binding.toKey(id, 'textcolor'), v,
        scope: scope, listener: onPropertyChange);
  }
}