7 lines
244 B
Dart
7 lines
244 B
Dart
import 'package:model/model.dart';
|
|
|
|
extension PresentationAccountExtension on PresentationAccount {
|
|
PresentationAccountResponse toPresentationAccountResponse() {
|
|
return PresentationAccountResponse(emails, preferredEmailIndex, type);
|
|
}
|
|
} |