DeleteCollection constructor

DeleteCollection({
  1. String? collectionName,
  2. Int64? timeout,
})

Implementation

factory DeleteCollection({
  $core.String? collectionName,
  $fixnum.Int64? timeout,
}) {
  final $result = create();
  if (collectionName != null) {
    $result.collectionName = collectionName;
  }
  if (timeout != null) {
    $result.timeout = timeout;
  }
  return $result;
}