type property

Implementation

RTCIceCandidateType? get type {
  final ret = js_util.getProperty(this, 'type');

  return ret == null ? null : RTCIceCandidateType.fromValue(ret);
}