import 'package:comunic/ui/screens/update_conversation_screen.dart'; import 'package:flutter/material.dart'; /// Update a conversation route /// /// @author Pierre HUBERT class UpdateConversationRoute extends StatefulWidget { final int conversationID; const UpdateConversationRoute({Key key, this.conversationID}) : assert(conversationID != null), super(key: key); @override State createState() => _UpdateConversationRoute(); } class _UpdateConversationRoute extends State { @override Widget build(BuildContext context) => UpdateConversationScreen(convID: widget.conversationID); }