Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rpmtw/rpmtw-dart-common-library
RPMTW common library for dart
https://github.com/rpmtw/rpmtw-dart-common-library
Last synced: about 2 months ago
JSON representation
RPMTW common library for dart
- Host: GitHub
- URL: https://github.com/rpmtw/rpmtw-dart-common-library
- Owner: RPMTW
- License: gpl-3.0
- Created: 2022-04-05T09:30:27.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-11T11:37:41.000Z (over 2 years ago)
- Last Synced: 2024-04-24T08:18:33.426Z (9 months ago)
- Language: Dart
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![codecov](https://codecov.io/gh/RPMTW/RPMTW-Dart-Common-Library/branch/main/graph/badge.svg?token=za4EF1HOXn)](https://codecov.io/gh/RPMTW/RPMTW-Dart-Common-Library)
[![pub package](https://img.shields.io/pub/v/rpmtw_dart_common_library.svg)](https://pub.dev/packages/rpmtw_dart_common_library)[![likes](https://badges.bar/rpmtw_dart_common_library/likes)](https://pub.dev/packages/rpmtw_dart_common_library/score)
[![popularity](https://badges.bar/rpmtw_dart_common_library/popularity)](https://pub.dev/packages/rpmtw_dart_common_library/score)
[![pub points](https://badges.bar/rpmtw_dart_common_library/pub%20points)](https://pub.dev/packages/rpmtw_dart_common_library/score)# RPMTW-Dart-Common-Library
RPMTW common library for dart## Install
### For dart
```bash
dart pub add rpmtw_dart_common_library
```
### For flutter
```bash
flutter pub add rpmtw_dart_common_library
```
## Example
```dart
import 'package:rpmtw_dart_common_library/src/logger/rpmtw_logger.dart';void main() {
RPMTWLogger.info('Hello RPMTW World');
}
```