toJson method

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

Object to Map serializer

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    '@type': 'inputStoryAreaTypeSuggestedReaction',
    if (extra != null) '@extra': extra,
    'reaction_type': reaction_type,
    'is_dark': is_dark,
    'is_flipped': is_flipped
  };
}