MeiliSearchIndex constructor

MeiliSearchIndex(
  1. MeiliSearchClient client,
  2. String uid, {
  3. String? primaryKey,
  4. DateTime? createdAt,
  5. DateTime? updatedAt,
})

Implementation

MeiliSearchIndex(
  this.client,
  this.uid, {
  this.primaryKey,
  DateTime? createdAt,
  DateTime? updatedAt,
})  : _createdAt = createdAt,
      _updatedAt = updatedAt;