printQrCode method

Future<Map<String, dynamic>> printQrCode(
  1. String data, {
  2. int size = 200,
  3. String errorCorrectionLevel = "L",
})

Implementation

Future<Map<String, dynamic>> printQrCode(
  String data, {
  int size = 200,
  String errorCorrectionLevel = "L", // "L", "M", "Q", "H"
}) {
  throw UnimplementedError('printQrCode() has not been implemented.');
}