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