checkTensors property
bool?
get
checkTensors
A flag indicating whether to check tensors.
If true
, tensors will be checked. If false
or null
, tensors will not be checked.
Implementation
bool? get checkTensors => _checkTensors;
set
checkTensors
(bool? value)
Implementation
set checkTensors(bool? value) {
_checkTensors = value;
notifyListeners();
}