revert Merge pull request 'Feature_Login' (#1) from Feature_Login into main Reviewed-on: #1
11 lines
244 B
Dart
11 lines
244 B
Dart
import 'package:marco/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";
|
|
|
|
}
|