v3.3.14
swiss_knife
Dart 유용한 도구 - 컬렉션, 수학, 날짜, URI, JSON, 이벤트, 리소스, 정규 표현식 등...
18좋아요 2.3천30일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
Dart 유용한 도구: 컬렉션, 수학, 날짜 등...
^0.20.2^3.1.2^5.1.1^1.29.0^5.0.4^1.19.1^1.15.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
pub package Null Safety Dart CI GitHub Tag New Commits Last Commits Pull Requests Code size License FOSSA Status
Dart Useful Tools:
and more...
See Swiss Knife API documentation for full functionalities.
A simple EventStream usage example:
import 'package:swiss_knife/swiss_knife.dart';
class User {
final EventStream<String> onNotification = new EventStream() ;
void notify(String msg) {
onNotification.add(msg) ;
}
}
void main() {
User user = new User() ;
user.onNotification.listen((msg) {
print("NOTIFICATION> $msg") ;
});
}
Please file feature requests and bugs at the issue tracker.
Graciliano M. Passos: gmpassos@GitHub.
Dart free & open-source license.