EntityStateUpdate constructor

EntityStateUpdate({
  1. Any? id,
  2. Any? state,
  3. bool? noLongerMatching,
})

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;
}