id property

String get id

A non-empty string uniquely identifying the ruleset. IDs beginning with '_' are reserved for internal use.

Implementation

String get id => _wrapped.id;
set id (String v)

Implementation

set id(String v) {
  _wrapped.id = v;
}