isUseResult property

  1. @override
bool get isUseResult
override

Whether this annotation is @useResult or @UseResult from the meta package.

@useResult indicates that the return value of a method should not be ignored.

Implementation

@override
bool get isUseResult => _isMeta('useResult') || _isMeta('UseResult');