getDataCache function

List<int> getDataCache(
  1. QrCode code
)

Implementation

List<int> getDataCache(QrCode code) => code._dataCache ??= _createData(
  code.typeNumber,
  code.errorCorrectLevel,
  code.payload.dataList,
);