isDeprecated property

bool? isDeprecated

Declares this operation to be deprecated.

Consumers SHOULD refrain from usage of the declared operation. Default value is false.

Implementation

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

Implementation

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