setValue method
Implementation
void setValue(T in_value, {
bool? hasModify,
}) {
_value = in_value;
if (null != hasModify) {
_hasNotify = hasModify;
}
}
void setValue(T in_value, {
bool? hasModify,
}) {
_value = in_value;
if (null != hasModify) {
_hasNotify = hasModify;
}
}