UpdateUserResponse constructor

UpdateUserResponse({
  1. Timestamp? changeDate,
  2. String? emailCode,
  3. String? phoneCode,
})

Implementation

factory UpdateUserResponse({
  $7.Timestamp? changeDate,
  $core.String? emailCode,
  $core.String? phoneCode,
}) {
  final result = create();
  if (changeDate != null) result.changeDate = changeDate;
  if (emailCode != null) result.emailCode = emailCode;
  if (phoneCode != null) result.phoneCode = phoneCode;
  return result;
}