nonce property

String? get nonce

Implementation

String? get nonce {
  if (_nonce == null) {
    _ensureLazyLoaded();
  }
  return _nonce;
}
set nonce (String? value)

Implementation

set nonce(String? value) => _nonce = value;