Line data Source code
1 : abstract class CuteEventContent {
2 : static const String eventType = 'im.fluffychat.cute_event';
3 :
4 : const CuteEventContent._();
5 :
6 2 : static Map<String, dynamic> get googlyEyes => {
7 : 'msgtype': CuteEventContent.eventType,
8 : 'cute_type': 'googly_eyes',
9 : 'body': '👀',
10 : };
11 2 : static Map<String, dynamic> get cuddle => {
12 : 'msgtype': CuteEventContent.eventType,
13 : 'cute_type': 'cuddle',
14 : 'body': '😊',
15 : };
16 2 : static Map<String, dynamic> get hug => {
17 : 'msgtype': CuteEventContent.eventType,
18 : 'cute_type': 'hug',
19 : 'body': '🤗',
20 : };
21 : }
|