toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (id != null) {
_json[r'id'] = id;
}
if (band != null) {
_json[r'band'] = band;
}
if (strength != null) {
_json[r'strength'] = strength;
}
if (macAddress != null) {
_json[r'macAddress'] = macAddress;
}
if (security != null) {
_json[r'security'] = security;
}
return _json;
}