MmEmoji constructor

MmEmoji({
  1. String? id,
  2. String? creatorId,
  3. String? name,
  4. int? createAt,
  5. int? updateAt,
  6. int? deleteAt,
})

Returns a new MmEmoji instance.

Implementation

MmEmoji({
  this.id,
  this.creatorId,
  this.name,
  this.createAt,
  this.updateAt,
  this.deleteAt,
});