ComboBoxFormField.fromMap constructor

ComboBoxFormField.fromMap(
  1. dynamic map
)

Implementation

factory ComboBoxFormField.fromMap(dynamic map) {
  return ComboBoxFormField(
      defaultValues: List<String>.from(map['defaultValues']),
      selectedIndices: List<int>.from(map['selectedIndices']),
      options: PdfFormOption.listFromMap(map['options']),
      values: List<String>.from(map['values']));
}