showexception property
bool
get
showexception
Implementation
bool get showexception => _showexception?.get() ?? true;
set
showexception
(dynamic v)
Implementation
set showexception (dynamic v)
{
if (_showexception != null)
{
_showexception!.set(v);
}
else if (v != null)
{
_showexception = BooleanObservable(Binding.toKey(id, 'showexception'), v, scope: scope);
}
}