usecase_annotation 0.0.2 copy "usecase_annotation: ^0.0.2" to clipboard
usecase_annotation: ^0.0.2 copied to clipboard

outdated

usecase_annotation allows you to generate usecases class from the repository class

example/usecase_annotation_example.dart

abstract class AuthRepo {
  void m1();
  Future<String> m2(int param1);
}

class AuthRepoImpl implements AuthRepo {
  @override
  void m1() {}

  @override
  Future<String> m2(int param1) {
    throw UnimplementedError();
  }
}
5
likes
0
points
165
downloads

Publisher

unverified uploader

Weekly Downloads

usecase_annotation allows you to generate usecases class from the repository class

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on usecase_annotation