Last updated:
0 purchases
artificial delay
artificial_delay #
A dart package to simulate artificial delays from volatile data providers.
Features #
Extremely tiny package
Portable, no external packages necessary
Getting started #
Simply add artificial_delay to your pubspec.yaml using dart pub add artificial_delay.
Usage #
import 'package:artificial_delay/artificial_delay.dart';
final artificialDelay = ArtificialDelay(
minDelay: const Duration(milliseconds: 100),
maxDelay: const Duration(seconds: 1),
);
await artificialDelay.trigger();
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.