Collection constructor

Collection({
  1. required String name,
  2. required String id,
  3. required bool isSystem,
  4. required int type,
  5. required int status,
  6. required String globallyUniqueId,
  7. required ArangoClient client,
})

Implementation

Collection(
    {required this.name,
    required this.id,
    required this.isSystem,
    required this.type,
    required this.status,
    required this.globallyUniqueId,
    required this.client});