copyWith method
Implementation
FormAnswer copyWith(
{JsonNode? adf,
List<String>? choices,
String? date,
String? text,
String? time,
List<String>? users}) {
return FormAnswer(
adf: adf ?? this.adf,
choices: choices ?? this.choices,
date: date ?? this.date,
text: text ?? this.text,
time: time ?? this.time,
users: users ?? this.users,
);
}