copyWith method
Implementation
MessageChat copyWith(
{String? role, String? content, String? created, bool? isSentByMe}) =>
MessageChat(
role: role ?? this.role,
content: content ?? this.content,
created: created ?? this.created,
isSentByMe: isSentByMe ?? this.isSentByMe,
);