mock_annotation 1.2.1%2B2
faker base mock annotation
example
@Mock()
class ExampleEntity {
const ExampleEntity({
@required this.id,
@required this.name,
});
final int id;
final String name;
}
faker base mock annotation
@Mock()
class ExampleEntity {
const ExampleEntity({
@required this.id,
@required this.name,
});
final int id;
final String name;
}