CreateUserResponse constructor

CreateUserResponse({
  1. Details? details,
  2. String? emailCode,
  3. String? phoneCode,
})

Implementation

factory CreateUserResponse({
  $2.Details? details,
  $core.String? emailCode,
  $core.String? phoneCode,
}) {
  final result = create();
  if (details != null) result.details = details;
  if (emailCode != null) result.emailCode = emailCode;
  if (phoneCode != null) result.phoneCode = phoneCode;
  return result;
}