isDeprecated property

bool get isDeprecated

Implementation

bool get isDeprecated => _deprecated ?? false;
set isDeprecated (bool n)

Implementation

set isDeprecated(bool n) {
  _deprecated = n;
}