LocalDistributionProto_CheckExistenceResponse constructor

LocalDistributionProto_CheckExistenceResponse({
  1. bool? exist,
  2. ClientProto? client,
})

Implementation

factory LocalDistributionProto_CheckExistenceResponse({
  $core.bool? exist,
  $1.ClientProto? client,
}) {
  final result = create();
  if (exist != null) result.exist = exist;
  if (client != null) result.client = client;
  return result;
}