card-management

This commit is contained in:
2025-05-19 16:30:27 +05:30
parent 2b2605cecc
commit 98f2270614
8 changed files with 375 additions and 20 deletions

View File

@@ -5,7 +5,7 @@ class AuthCredentials {
AuthCredentials({required this.username, required this.password});
Map<String, dynamic> toJson() => {
'username': username,
'customer_no': username,
'password': password,
};
}