isSet property

bool isSet

This property needed to distinguish between newly created and not set WireData which has value of null at the beginning And with WireData at time when it's removed, because when removing the value also set to null

Implementation

bool get isSet => _value != null;