11 lines
246 B
Dart
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";
|
|
|
|
}
|