BlockListResponse constructor

const BlockListResponse({
  1. DateTime? createdAt,
  2. String? id,
  3. required bool isLeetCheckEnabled,
  4. required bool isPluralCheckEnabled,
  5. required String name,
  6. String? team,
  7. required String type,
  8. DateTime? updatedAt,
  9. required List<String> words,
})

Implementation

const BlockListResponse({
  this.createdAt,
  this.id,
  required this.isLeetCheckEnabled,
  required this.isPluralCheckEnabled,
  required this.name,
  this.team,
  required this.type,
  this.updatedAt,
  required this.words,
});