mock_annotation 1.0.1 mock_annotation: ^1.0.1 copied to clipboard
faker base mock annotation
example #
@Mock()
class ExampleEntity {
const ExampleEntity({
@required this.id,
@required this.name,
});
final int id;
final String name;
}