is_even_new
A lightweight, efficient Dart package that provides a simple utility function to check if a number is even. This package offers zero dependencies and optimized performance for all your even number checking needs.
Features
- Fast determination if a number is even or odd
- Null safety compliant
- No external dependencies
Getting started
Add is_even_new to your pubspec.yaml file:
dependencies:
is_even_new: ^0.0.1
Usage
// Works with numeric strings
print(isEven(42)); // true
print(isEven(43)); // false