EntityStateUpdate constructor
Implementation
factory EntityStateUpdate({
$5.Any? id,
$5.Any? state,
$core.bool? noLongerMatching,
}) {
final _result = create();
if (id != null) {
_result.id = id;
}
if (state != null) {
_result.state = state;
}
if (noLongerMatching != null) {
_result.noLongerMatching = noLongerMatching;
}
return _result;
}