toJson method
Convert the AccountUpdateContract object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson({bool visible = true}) {
return {
'owner_address': ownerAddress.toAddress(visible),
'account_name': StringUtils.tryDecode(accountName)
};
}