nyxx/nyxx/lib/src/core/message/UnicodeEmoji.dart
2021-03-29 21:18:20 +02:00

22 lines
421 B
Dart

part of nyxx;
/// Represents unicode emoji. Contains only emoji code.
class UnicodeEmoji implements IEmoji {
/// Codepoint for emoji
final String code;
/// Constructs new Unicode emoji from given [String]
UnicodeEmoji(this.code);
@override
String formatForMessage() =>
this.code;
@override
String encodeForAPI() =>
this.code;
@override
String toString() => this.formatForMessage();
}