repo_case 0.1.2 repo_case: ^0.1.2 copied to clipboard
repo_case allows you to auto-generate use cases classes from your repository signature class
import 'package:repo_case/repo_case.dart';
@repoCase
abstract class Repository {
String getData(int param);
}