clear method Null safety

void clear(
  1. dynamic productList
)

Implementation

void clear(final ProductList productList) {
  final _BarcodeList newList = _BarcodeList.now(<String>[]);
  _put(_getKey(productList), newList);
}