toJson method

  1. @override
Map<String, dynamic> toJson()
override

Object to Map serializer

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    '@type': 'chatEventAvailableReactionsChanged',
    if (extra != null) '@extra': extra,
    'old_available_reactions': old_available_reactions,
    'new_available_reactions': new_available_reactions
  };
}