toJson method
Converts a IPAddressSpec instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempParentRef = parentRef;
if (tempParentRef != null) {
jsonData['parentRef'] = tempParentRef.toJson();
}
return jsonData;
}