https://github.com/roundedinfinity/clever_util
A utility dart library that simplifies using many patterns.
https://github.com/roundedinfinity/clever_util
Last synced: about 1 year ago
JSON representation
A utility dart library that simplifies using many patterns.
- Host: GitHub
- URL: https://github.com/roundedinfinity/clever_util
- Owner: RoundedInfinity
- License: bsd-3-clause
- Created: 2023-08-02T10:00:50.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-03T15:42:49.000Z (over 2 years ago)
- Last Synced: 2025-02-17T02:19:22.523Z (over 1 year ago)
- Language: Dart
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Clever Util
[![style: very good analysis][very_good_analysis_badge]][very_good_analysis_link]
[](https://github.com/felangel/mason)
[![License: MIT][license_badge]][license_link]
A utility dart library that simplifies using many patterns.
## Usage
Import the library.
```dart
import 'package:clever_util/clever_util.dart';
```
Use the methods of the library.
```dart
void main(List args) {
// Working with Strings
'hello world'.isNotBlank; // true
' '.isNotBlank; // false
null.isNotBlank; // false
}
```
[license_badge]: https://img.shields.io/badge/license-MIT-blue.svg
[license_link]: https://opensource.org/licenses/MIT
[very_good_analysis_badge]: https://img.shields.io/badge/style-very_good_analysis-B22C89.svg
[very_good_analysis_link]: https://pub.dev/packages/very_good_analysis