Files
GitJournal/packages/git_setup/lib/git_setup.dart
Vishesh Handa 704919c542 Create a git_setup package
This will contain all the code for setting up a git repo. I'm moving the
code to another package as it can then be more easily used across other
projects.
2022-06-13 17:40:46 +02:00

8 lines
127 B
Dart

library git_setup;
/// A Calculator.
class Calculator {
/// Returns [value] plus 1.
int addOne(int value) => value + 1;
}