ResidentCountryView constructor

const ResidentCountryView({
  1. Key? key,
  2. required bool isDialog,
  3. required VoidCallback onConfirm,
  4. VoidCallback? onPressClose,
})

Implementation

const ResidentCountryView({
  super.key,
  required this.isDialog,
  required this.onConfirm,
  this.onPressClose,
});