SalinVAWidget constructor

const SalinVAWidget({
  1. Key? key,
  2. required String value,
  3. required String msg,
  4. String? text,
  5. bool? enable,
})

Implementation

const SalinVAWidget({
  super.key,
  required this.value,
  required this.msg,
  this.text,
  this.enable,
});