CQRCode constructor
CQRCode({
- required int x,
- required int y,
- required String content,
- CCodeRotation codeRotation = CCodeRotation.rotation_0,
- required int width,
- CCorrectLevel? correctLevel = CCorrectLevel.l,
Implementation
CQRCode({
required int x,
required int y,
required String content,
CCodeRotation codeRotation = CCodeRotation.rotation_0,
required int width,
CCorrectLevel? correctLevel = CCorrectLevel.l,
}) {
_x = x;
_y = y;
_content = content;
_codeRotation = codeRotation;
_width = width;
_level = correctLevel!;
}