mock_annotation 1.2.1+2 mock_annotation: ^1.2.1+2 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;
}