GetMyProfileResponse constructor
GetMyProfileResponse({
- ObjectDetails? details,
- Profile? profile,
Implementation
factory GetMyProfileResponse({
$3.ObjectDetails? details,
$1.Profile? profile,
}) {
final result = create();
if (details != null) result.details = details;
if (profile != null) result.profile = profile;
return result;
}