Last updated:
0 purchases
imitatio
imitatio #
Imitatio allows generation of different types of fake data in multiple languages.
Inspired by mimesis.
Usage #
Imitatio has many classes that can be used to generate fake data. For example, class Person has various methods for personal information:
import 'package:imitatio/imitatio.dart';
final person = Person();
print(person.fullName()); // "Kristofer Livingston"
print(person.email(domains: ['example.com']); // "[email protected]"
print(person.phoneNumber(mask: "1-2##-3##-4##5")); // "1-224-322-4755"
copied to clipboard
License #
MIT. See LICENSE file for more information.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.