QRIS constructor

QRIS(
  1. String data, {
  2. bool lenient = false,
})

Generates a QRIS instance with parsed information, given a data String.

Throws a QRISError if the provided data is not a valid String that conforms to QRIS standard.

Implementation

QRIS(String data, {
  bool lenient = false,
}): super(data, lenient: lenient,);