isDeprecated property
bool?
get
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;
set
isDeprecated
(bool? f)
Implementation
set isDeprecated(bool? f) {
_deprecated = f;
}