Form.fromJson constructor

Form.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory Form.fromJson(Map<String, Object?> json) {
  return Form(
    answers: json[r'answers'] as Map<String, Object?>?,
  );
}