RelayCredentialsResult constructor

RelayCredentialsResult({
  1. String? sharedSecret,
})

Implementation

factory RelayCredentialsResult({
  $core.String? sharedSecret,
}) {
  final result = create();
  if (sharedSecret != null) result.sharedSecret = sharedSecret;
  return result;
}