placeholder_utils
A set of functions and widgets to help people on development process.
Current Features
- Generating lorem ipsum
loremIpsum(
paragraphs: 1,
words: 10,
initWithLorem: true
);
You also can delay the return by calling futureLoremIpsum()
by passing a duration
.
- Generating random bool value
getRandomBool();
You also can delay the return by calling getFutureBool()
by passing a duration
.
- Generate either
double
orint
getDoubleOrInt(number = 1);