code property

String? get code

JavaScript or CSS code to inject.

Warning: Be careful using the code parameter. Incorrect use of it may open your extension to cross site scripting attacks.

Implementation

String? get code => _wrapped.code;
set code (String? v)

Implementation

set code(String? v) {
  _wrapped.code = v;
}