CreateWorldRequest constructor

CreateWorldRequest({
  1. required String assetUrl,
  2. int? assetVersion,
  3. String? authorId,
  4. String? authorName,
  5. int? capacity,
  6. String? description,
  7. String? id,
  8. required String imageUrl,
  9. required String name,
  10. String? platform,
  11. ReleaseStatus? releaseStatus,
  12. List<String>? tags,
  13. String? unityPackageUrl,
  14. String? unityVersion = '5.3.4p1',
})

Returns a new CreateWorldRequest instance.

Implementation

CreateWorldRequest({
  required this.assetUrl,
  this.assetVersion,
  this.authorId,
  this.authorName,
  this.capacity,
  this.description,
  this.id,
  required this.imageUrl,
  required this.name,
  this.platform,
  this.releaseStatus,
  this.tags,
  this.unityPackageUrl,
  this.unityVersion = '5.3.4p1',
});