Add initial project structure and configuration files for iOS and Android

This commit is contained in:
2025-04-10 23:24:52 +05:30
commit e5ab751a74
86 changed files with 3762 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
class AuthCredentials {
final String username;
final String password;
AuthCredentials({required this.username, required this.password});
Map<String, dynamic> toJson() => {
'username': username,
'password': password,
};
}