Signal constructor

Signal({
  1. String debugLabel = "",
})

name: The field name at: The declared type of this field

  • if at != Null then: it's a state_store.dart field
  • if at == Null then: Independent variable, not belong to any Store,

Implementation

Signal({String debugLabel = ""}) : _debugLabel = debugLabel;