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