AddressInput constructor

const AddressInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String apiKey,
  4. String labelText = "Address",
  5. String? validator(
    1. String? value
    )?,
  6. bool enabled = true,
  7. bool reviewable = false,
})

Implementation

const AddressInput({
  super.key,
  required this.controller,
  required this.apiKey,
  this.labelText = "Address",
  this.validator,
  this.enabled = true,
  this.reviewable = false,
});