GSField.qrScanner constructor
GSField.qrScanner({})
Implementation
GSField.qrScanner({
Key? key,
required String tag,
String? title,
bool? showTitle,
String? errorMessage,
String? helpMessage,
bool? required,
GSFieldStatusEnum? status,
int? weight,
String? hint,
Widget? iconWidget,
Color? iconColor,
bool? enableReadOnly,
}) : super(key: key) {
model = GSQRScannerModel(
type: GSFieldTypeEnum.qrScanner,
tag: tag,
showTitle: showTitle ?? false,
title: title,
errorMessage: errorMessage,
helpMessage: helpMessage,
required: required,
status: status,
weight: weight,
hint: hint,
iconWidget: iconWidget,
enableReadOnly: enableReadOnly,
);
}