nonNotifiableSetter property
Sets the value without notifying listeners.
Implementation
@override
set nonNotifiableSetter(T value) {
if (_validator?.call(value) ?? true) {
super.nonNotifiableSetter = value;
} else {
log('Mastro<${T.runtimeType}> validator failed for value: $value');
}
}