isDeprecated property
bool
get
isDeprecated
Specifies that a parameter is deprecated and SHOULD be transitioned out of usage.
Implementation
bool get isDeprecated => _deprecated ?? false;
set
isDeprecated
(bool? f)
Implementation
set isDeprecated(bool? f) {
_deprecated = f;
}