initialize method
Must be called before you can use any function from this class.
_callback
This will be invoked everytime sendTransaction is called.
Implementation
PosIpAddressConnector initialize(
String ip, PosIpAddressConnectionCallback callback) {
_ipAddress = ip;
_callback = callback;
return this;
}