convert JSON String to the list object in flutter
问题 I'm still new to the dart flutter. now I'm trying to pull data from the REST API. following the script that I have made: class ChatCard { final String chatdetail_id; final String chatdetail_userfullname; final String chatdetail_userurlphoto; final String chatdetail_message; final int chatdetail_isread; final String chatdetail_datetime; ChatCard({ this.chatdetail_id, this.chatdetail_userfullname, this.chatdetail_userurlphoto, this.chatdetail_message, this.chatdetail_isread, this.chatdetail