uid property

int uid

Implementation

int get uid => _uid;
void uid= (int uid)

Implementation

set uid(int uid) {
  if (uid < 0 || uid > ((1 << 63) - 1)) {
    throw Exception('uid out of bounds: $uid');
  }
  _uid = uid;
}