GSQRScannerModel constructor

GSQRScannerModel(
  1. {dynamic type,
  2. dynamic tag,
  3. dynamic title,
  4. dynamic errorMessage,
  5. dynamic helpMessage,
  6. dynamic required,
  7. dynamic status,
  8. dynamic weight,
  9. dynamic showTitle,
  10. String? hint,
  11. Widget? iconWidget}
)

Implementation

GSQRScannerModel({
  type,
  tag,
  title,
  errorMessage,
  helpMessage,
  required,
  status,
  weight,
  showTitle,
  this.hint,
  this.iconWidget,
}) : super(
        type: type,
        tag: tag,
        title: title,
        errorMessage: errorMessage,
        helpMessage: helpMessage,
        required: required,
        status: status,
        weight: weight,
        showTitle: showTitle,
      );