copyWith method
GetAllConversations
copyWith({
- String? status,
- String? message,
- List<
GetAllConversationsData> ? data,
Implementation
GetAllConversations copyWith({
String? status,
String? message,
List<GetAllConversationsData>? data,
}) {
return GetAllConversations(
status: status ?? this.status,
message: message ?? this.message,
data: data ?? this.data,
);
}