AddressFormFieldInformation constructor

AddressFormFieldInformation(
  1. String language,
  2. AddressFormField type, {
  3. required String label,
  4. String? description,
  5. bool obligatory = false,
  6. Map<String, String>? availableValues,
})

Implementation

AddressFormFieldInformation(
  this.language,
  this.type, {
  required this.label,
  this.description,
  this.obligatory = false,
  this.availableValues,
}) : assert(availableValues == null || availableValues.isNotEmpty);