GSQRScannerModel constructor
GSQRScannerModel(- {dynamic type,
- dynamic tag,
- dynamic title,
- dynamic errorMessage,
- dynamic helpMessage,
- dynamic required,
- dynamic status,
- dynamic weight,
- dynamic showTitle,
- String? hint,
- 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,
);