toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => <String, dynamic>{
      id: {
        'creator_id': creatorId,
        'reaction': reaction,
        'image_url': imageUrl,
        'created_at': createdAt.toIso8601String(),
      },
    };