simple_add
A very simple Dart/Flutter package that adds two numbers.
Features
- Add two numbers easily
- Very lightweight and fast
- Works on Dart & Flutter apps
Usage
import 'package:add_two/add_two.dart';
void main() {
final calc = AddTwo();
print(calc.add(10, 20)); // Output: 30
}