Files
workavia-mail-front/lib/features/login/domain/model/recent_login_username.dart
T

13 lines
379 B
Dart

import 'package:equatable/equatable.dart';
class RecentLoginUsername with EquatableMixin {
final String username;
final DateTime creationDate;
RecentLoginUsername(this.username, this.creationDate);
factory RecentLoginUsername.now(String username) => RecentLoginUsername(username, DateTime.now());
@override
List<Object?> get props => [ username, creationDate ];
}