ExistsDomainResponse constructor

ExistsDomainResponse({
  1. bool? exists,
})

Implementation

factory ExistsDomainResponse({
  $core.bool? exists,
}) {
  final result = create();
  if (exists != null) result.exists = exists;
  return result;
}