signal method

T signal({
  1. String field = "",
  2. Type at = Null,
  3. String debugLabel = "",
})

在自定义Store时需提供field at,会注册字段

Implementation

T signal({String field = "", Type at = Null, String debugLabel = ""}) {
  _debugLabel = debugLabel;
  return this;
}