toString method

  1. @override
String toString()
override

Returns a string representation of this BarcodeData instance.

The string includes the data and type properties.

Implementation

@override
String toString() {
  return 'BarcodeData{data: $data, type: $type}';
}