core_dart 1.0.0 core_dart: ^1.0.0 copied to clipboard
Utilities and helpers that are useful in any dart project.
Package with utilities and helpers that are useful in any dart project.
Features #
The list of available functions: #
- delay
Getting started #
dependencies:
core_dart: [latest-version]
Usage #
Delay shortcut example:
import 'package:core_dart/core_dart.dart';
Future<void> main() async {
await delay(seconds: 5);
print('After delay');
}