0 purchases
string literal finder annotations
string_literal_finder_annotations #
Runtime helper for the string_literal_finder.
Usage #
A simple usage example:
import 'package:string_literal_finder_annotations/string_literal_finder_annotations.dart';
void myFunc(@NonNls String nonTranslatable) {}
main() {
// ignored, because of @NonNls annotation
myFunc('Lorem ipsum');
// ignored, because wrapped in `nonNls`
final map = nonNls({
'lorem': 'ipsum',
});
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.