GetMyProfileResponse constructor

GetMyProfileResponse({
  1. ObjectDetails? details,
  2. Profile? profile,
})

Implementation

factory GetMyProfileResponse({
  $7.ObjectDetails? details,
  $12.Profile? profile,
}) {
  final _result = create();
  if (details != null) {
    _result.details = details;
  }
  if (profile != null) {
    _result.profile = profile;
  }
  return _result;
}