value property

int value

Get the int value of the enum

Implementation

int get value {
  switch (this) {
    case InviteTargetType.stream:
      return 1;
    case InviteTargetType.embeddedApplication:
      return 2;
  }
}