feat: starter kit.

This commit is contained in:
Darshan
2025-02-07 17:53:36 +05:30
parent 4705d9ba34
commit 1f9a482d56
208 changed files with 7497 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
/// A data model for holding appwrite project information.
class ProjectInfo {
final String endpoint;
final String projectId;
final String projectName;
final String version;
ProjectInfo({
required this.endpoint,
required this.projectId,
required this.projectName,
required this.version,
});
}