OneDriveResponse constructor

OneDriveResponse({
  1. int? statusCode,
  2. String? body,
  3. String? message,
  4. Uint8List? bodyBytes,
  5. bool isSuccess = false,
})

Implementation

OneDriveResponse({
  this.statusCode,
  this.body,
  this.message,
  this.bodyBytes,
  this.isSuccess = false
});