FatooraQrCodeResponse constructor
const
FatooraQrCodeResponse({
- required String? qrCode,
- required FatooraServiceResponse response,
- required ResponseStatus status,
Creates a new instance of FatooraQrCodeResponse.
status
: Indicates the result of the QR code generation request.response
: Contains service metadata and messages.qrCode
: The generated QR code string, if available.
Implementation
const FatooraQrCodeResponse({
required this.qrCode,
required this.response,
required this.status,
});