AnimatedEmojiData constructor

const AnimatedEmojiData(
  1. String id, {
  2. required String name,
  3. List<String> categories = const [],
  4. List<String> tags = const [],
})

A description of an animated emoji.

Implementation

const AnimatedEmojiData(
  this.id, {
  required this.name,
  this.categories = const [],
  this.tags = const [],
});