User(- {required String id,
- required String username,
- required String name,
- required String type,
- String? imagePath,
- String? email,
- DateTime? birth,
- String? phoneNumber,
- String? notificationToken,
- String? isAgreeTerms,
- String? isAgreePrivacy,
- String? isAgreeMarketing,
- String? awsAccessKey,
- String? awsSecretKey,
- String? awsSessionToken,
- String? createdAt}
)
Implementation
User({
required this.id,
required this.username,
required this.name,
required this.type,
this.imagePath,
this.email,
this.birth,
this.phoneNumber,
this.notificationToken,
this.isAgreeTerms,
this.isAgreePrivacy,
this.isAgreeMarketing,
this.awsAccessKey,
this.awsSecretKey,
this.awsSessionToken,
this.createdAt,
});