encode static method
Implementation
static Map<String, dynamic> encode(Remote value) {
Map<String, dynamic> entityAsMap = {
"url" : value.url,
"auth" : value.auth == null ? null : RemoteAuthentication.encode(value.auth!)
};
return entityAsMap;
}