I have an onchange of two fields that is launched when modifying one of them.
@api.onchange('name', 'address')
def onchange_name_address(self):
**function code**
I would like to know when it comes into the function of that onchange which field is exactly the one that has launched it, if it has been 'name' or has been 'address'
Is there any way to know it? Thanks in advance