AddressField constructor

const AddressField({
  1. Key? key,
  2. required GlobalKey<FormState> formKey,
  3. VoidCallback? onModified,
  4. Address? defaultValue,
  5. bool isEdit = true,
})

Implementation

const AddressField({
  Key? key,
  required this.formKey,
  this.onModified,
  this.defaultValue,
  this.isEdit = true,
}) : super(key: key);