Message.fromJson constructor
Implementation
factory Message.fromJson(Map<String, dynamic> json) => Message(
role: json['role'],
content: json['content'],
status: json['status'],
createdAt: DateTime.tryParse(json['createdAt'] ?? ''),
updatedAt: DateTime.tryParse(json['updatedAt'] ?? ''),
id: json['_id'] ?? json['id']);