ESPTouchResult class

Contain the configured device's IP and MAC addresses.

When working with ESPTouch's ESPTouchTask, the output of a task is basically a Stream<ESPTouchResult>.

Constructors

ESPTouchResult(String ip, String bssid)
Create ESPTouchResult
const
ESPTouchResult.fromMap(Map m)
Create strongly-typed ESPTouchResult instance from a map.

Properties

bssid String
BSSID (MAC address) of the connected device.
final
hashCode int
We provide a hashcode implementation.
no setteroverride
ip String
IP address of the connected device on the local network in string representation.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object o) bool
We provide == operator implementation: if two results have the same IP and BSSID, we consider them the same.
override