copyWith method

Form copyWith({
  1. Map<String, dynamic>? answers,
})

Implementation

Form copyWith({Map<String, dynamic>? answers}) {
  return Form(
    answers: answers ?? this.answers,
  );
}