v2.0.1
mock_data
Dartを使用してランダムなデータを生成します。ランダムな文字列、整数、名前、色、IPアドレス、UUID、URL、日付を作成するために使用できます。
29いいね 58430日間ダウンロード160Pub ポイント
AndroidiOSWebmacOSWindowsLinux
Dart を使ってランダムなデータ(文字列、整数、IP など)を生成します。
^1.17.5^1.11.0以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
Mock Data Logo
Build Status
License
Version
Generate random data using Dart
API provides generation of:
A simple usage example:
import 'package:mock_data/mock_data.dart';
main() {
mockName(); // Generate male or female first name.
mockName('male'); // Generate male first name.
mockName('female'); // Generate female first name.
mockInteger(1, 6); // Generate integer in range from 1 do 6.
mockString(16); // Generate string of length 16.
mockIPv4(); // Generate IPv4 represented with
// format(default is '*.*.*.*') as String.
mockIPv6(); // Generate IPv6, same usage as with IPv4.
mockColor('hex'); // Generate color represented in hex format.
mockColor('rgb'); // Generate color represented in RGB format.
mockUUID(); // Generate UUIDv4
mockLocation(); // Generate random location.
mockLocation(53.55, 108.14, 1000); // Generate random location in 1000 m radius from the specified coordinates.
}
These are some basic examples. There are many more methods and they all support tweeking of parameters to suit you in generating random data. By reading examples you can learn more about functionality and usage of mock_data