7 lines
176 B
Dart
7 lines
176 B
Dart
import 'package:model/model.dart';
|
|
|
|
extension UserProfileExtension on UserProfile {
|
|
UserProfileResponse toUserProfileResponse() {
|
|
return UserProfileResponse(email);
|
|
}
|
|
} |