toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case InteractionMode.interactive:
      return 'INTERACTIVE';
    case InteractionMode.noVideo:
      return 'NO_VIDEO';
    case InteractionMode.videoOnly:
      return 'VIDEO_ONLY';
  }
}