2025-04-02 19:11:36 +05:30

11 lines
246 B
Dart

import 'package:maxdash/model/identifier_model.dart';
class User extends IdentifierModel {
final String email, firstName, lastName;
User(super.id, this.email, this.firstName, this.lastName);
String get name => "$firstName $lastName";
}