File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ library aspose_words_cloud;
3030import '../../aspose_words_cloud.dart' ;
3131
3232/// FromField.
33- abstract class FormField extends NodeLink {
33+ class FormField extends NodeLink {
3434 /// Gets or sets a value indicating whether references to the specified form field are automatically updated whenever the field is exited.
3535 bool ? _calculateOnExit;
3636
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ class FormFieldResponse extends WordsResponse {
5252 }
5353
5454 if (json.containsKey ('FormField' )) {
55- throw ApiException (400 , 'Cannot deserialize abstract data model FormField.' );
55+ formField = FormField ();
56+ formField! .deserialize (json['FormField' ] as Map <String , dynamic >);
5657 } else {
5758 formField = null ;
5859 }
You can’t perform that action at this time.
0 commit comments