Token constructor

const Token({
  1. String? data,
  2. String? dataType,
  3. String? format,
  4. String? key,
  5. Uint8List? rawData,
})

Implementation

const Token({
  this.data,
  this.dataType,
  this.format,
  this.key,
  this.rawData,
});