id property

int get id

Implementation

int get id {
  switch (this) {
    case PropertyFormat.integer:
      return 1;
    case PropertyFormat.float:
      return 2;
    case PropertyFormat.string:
      return 3;
    case PropertyFormat.map:
      return 4;
  }
}