- Updated Android Gradle plugin version to 8.2.1 - Added new entries to .gitignore for better file management - Changed dummy email and password in LoginController for testing - Updated AuthService to handle login via API with improved error handling - Modified User model to use username instead of email - Enhanced login screen UI with better structure and design - Registered new plugins in GeneratedPluginRegistrant.swift - Updated package versions in pubspec.yaml and pubspec.lock
11 lines
250 B
Dart
11 lines
250 B
Dart
import 'package:marco/model/identifier_model.dart';
|
|
|
|
class User extends IdentifierModel {
|
|
final String username, firstName, lastName;
|
|
|
|
User(super.id, this.username, this.firstName, this.lastName);
|
|
|
|
String get name => "$firstName $lastName";
|
|
|
|
}
|