v0.10.0
basics
一个 Dart 库,包含对基本 Dart 对象的便捷扩展方法。
113喜欢 2.2万近 30 天下载160Pub 分数
AndroidiOSWebmacOSWindowsLinux
一个 Dart 库,包含对基本 Dart 对象的便捷扩展方法。
^1.2.1^1.8.0^1.16.0以下为英文项目原文快照,最新内容请访问 GitHub。
Dart CI pub package package publisher
This repository contains a collection of useful extension methods on the built-in objects in Dart, such as String, Iterable, and Object.
Import the basics library.
import 'package:basics/basics.dart';
Then use the methods directly on objects in your dart code.
import 'package:basics/basics.dart';
main() async {
const numbers = <int>[2, 4, 8];
if (numbers.all((n) => n.isEven)) {
print('All numbers are even.');
}
print('sum of numbers is: ${numbers.sum()}');
for (var _ in 5.range) {
print('waiting 500 milliseconds...');
await Future.delayed(500.milliseconds);
}
}
This is not an official Google project.