PeamanHashtag constructor

PeamanHashtag({
  1. String? id,
  2. String? title,
  3. int? feeds,
  4. List<String> searchKeys = const <String>[],
  5. bool visibility = true,
  6. int? updatedAt,
})

Implementation

PeamanHashtag({
  this.id,
  this.title,
  this.feeds,
  this.searchKeys = const <String>[],
  this.visibility = true,
  this.updatedAt,
});