Initialize Flutter module with Android and iOS platform setups.

This commit is contained in:
2025-09-20 23:48:39 +02:00
parent 4d38f5d3a9
commit 074b5f8f4c
76 changed files with 2093 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
/// A Calculator.
class Calculator {
/// Returns [value] plus 1.
int addOne(int value) => value + 1;
}