value property

String get value

Implementation

String get value {
  switch (this) {
    case RTCBundlePolicy.balanced:
      return 'balanced';
    case RTCBundlePolicy.maxBundle:
      return 'max-bundle';
    case RTCBundlePolicy.maxCompat:
      return 'max-compat';
  }
}