UploadProgressModel.fromJson constructor

UploadProgressModel.fromJson(
  1. dynamic json
)

Implementation

UploadProgressModel.fromJson(dynamic json) {
  objectKey = json['objectKey'];
  bytesSent = json['bytesSent'];
  totalBytesSent = json['totalBytesSent'];
  totalBytesExpectedToSend = json['totalBytesExpectedToSend'];
}