ParseNetworkByteResponse constructor

ParseNetworkByteResponse({
  1. List<int>? bytes,
  2. String data = 'byte response',
  3. int statusCode = -1,
})

Implementation

ParseNetworkByteResponse({
  this.bytes,
  super.data = 'byte response',
  super.statusCode,
});