isDeprecated property

bool isDeprecated

Specifies that a parameter is deprecated and SHOULD be transitioned out of usage.

Implementation

bool get isDeprecated => _deprecated ?? false;
void isDeprecated=(bool f)

Implementation

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