df_safer_dart_annotations 0.2.1 copy "df_safer_dart_annotations: ^0.2.1" to clipboard
df_safer_dart_annotations: ^0.2.1 copied to clipboard

Annotations for the df_safer_dart_lints package.

example/example.dart

import 'package:df_safer_dart_annotations/df_safer_dart_annotations.dart';

// ignore: deprecated_member_use_from_same_package
@mustHandleReturn
String whatIsYourName() {
  return 'Tony';
}

void main() {
  whatIsYourName(); // triggers a warning!
  print(whatIsYourName());
}