Hello

A simple Dart package that provides a Calculator class with an addOne() method.

Features

  • Adds 1 to an integer
  • Easy to use
  • Lightweight and null-safe

Usage

import 'package:hello/hello.dart';

void main() {
  final calculator = Calculator();
  print(calculator.addOne(2)); // Output: 3
}

Libraries

hello