ICERestart constructor

ICERestart({
  1. PeerType? peerType,
})

Implementation

factory ICERestart({
  $0.PeerType? peerType,
}) {
  final result = create();
  if (peerType != null) result.peerType = peerType;
  return result;
}