remoteId property

int remoteId

Implementation

int get remoteId => _getAttribute<int>(kRemoteId, 0);
void remoteId=(int? x)

pass null to remove key from attributes

Implementation

set remoteId(int? x) =>
    (x == null) ? _attributes.remove(kRemoteId) : _attributes[kRemoteId] = x;