id property

int id

Implementation

int get id => _id;
void id= (int id)

Implementation

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