ClockModel class
This is the model that contains the customization options for the clock.
It is a ChangeNotifier, so use ChangeNotifier.addListener to listen to
changes to the model. Be sure to call ChangeNotifier.removeListener in
your dispose
method.
Contestants: Do not edit this.
- Inheritance
-
- Object
- ChangeNotifier
- ClockModel
- Available extensions
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- hasListeners → bool
-
Whether any listeners are currently registered.
no setterinherited
- high ↔ num
-
Daily high temperature, for example '26'.
getter/setter pair
- highString → String
-
Temperature high with unit of measurement.
no setter
- is24HourFormat ↔ bool
-
getter/setter pair
- location ↔ String
-
Current location String, for example 'Mountain View, CA'.
getter/setter pair
- low ↔ num
-
Daily low temperature, for example '19'.
getter/setter pair
- lowString → String
-
Temperature low with unit of measurement.
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- temperature ↔ num
-
Current temperature string, for example '22°C'.
getter/setter pair
- temperatureString → String
-
Temperature with unit of measurement.
no setter
- unit ↔ TemperatureUnit
-
Temperature unit, for example 'celsius'.
getter/setter pair
- unitString → String
-
Temperature unit of measurement with degrees.
no setter
- weatherAsset → String
-
Available on ClockModel, provided by the ClockModelHelpers extension
When we want to show the weather as a Iconno setter - weatherCondition ↔ WeatherCondition
-
Weather condition text for the current weather, for example 'cloudy'.
getter/setter pair
- weatherString → String
-
WeatherCondition value without the enum type.
no setter
Methods
-
addListener(
VoidCallback listener) → void -
Register a closure to be called when the object changes.
inherited
-
dispose(
) → void -
Discards any resources used by the object. After this is called, the
object is not in a usable state and should be discarded (calls to
addListener will throw after the object is disposed).
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
notifyListeners(
) → void -
Call all the registered listeners.
inherited
-
removeListener(
VoidCallback listener) → void -
Remove a previously registered closure from the list of closures that are
notified when the object changes.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited