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:simple_add/simple_add.dart';

void main() {
  final calc = SimpleAdd();
  print(calc.add(10, 20)); // Output: 30
}

Libraries

add_two