import 'package:flutter/material.dart'; /// Single conversation window /// /// @author Pierre Hubert class ConversationWindow extends StatefulWidget { final int convID; const ConversationWindow({ Key key, @required this.convID, }) : assert(convID != null), super(key: key); @override _ConversationWindowState createState() => _ConversationWindowState(); } class _ConversationWindowState extends State { @override Widget build(BuildContext context) { return Card();//TODO : continue here } }