AddressContainer constructor

const AddressContainer({
  1. Key? key,
  2. required dynamic selectMunicipality(
    1. String
    ),
  3. required dynamic selectDistrict(
    1. String
    ),
  4. required dynamic selectProvince(
    1. String
    ),
  5. required TextEditingController wardController,
  6. Color borderColor = Colors.black,
  7. bool isRoundedBorder = false,
  8. EdgeInsets? padding,
  9. EdgeInsets? margin,
  10. double radius = 10,
  11. bool isNepali = false,
})

Implementation

const AddressContainer({
  Key? key,
  required this.selectMunicipality,
  required this.selectDistrict,
  required this.selectProvince,
  required this.wardController,
  this.borderColor = Colors.black,
  this.isRoundedBorder = false,
  this.padding,
  this.margin,
  this.radius = 10,
  this.isNepali = false,
}) : super(key: key);