LightDimming class

Represents the current brightness of a light.

Implementers

Constructors

LightDimming.new({required double brightness})
Creates a LightDimming object.
LightDimming.empty()
Creates an empty LightDimming object.
LightDimming.fromJson(Map<String, dynamic> dataMap)
Creates a LightDimming object from the JSON response to a GET request.
factory

Properties

brightness double
Brightness percentage.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
hasUpdate bool
Whether or not this object has been updated.
no setter
originalBrightness double
The value of brightness when this object was instantiated.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({double? brightness, bool copyOriginalValues = true}) LightDimming
Returns a copy of this object with its field values replaced by the ones provided to this method.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
refreshOriginals() → void
Called after a successful PUT request, this method refreshed the "original" data in this object.
toJson({OptimizeFor optimizeFor = OptimizeFor.put}) Map<String, dynamic>
Converts this object into JSON format.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override