copyWith method
Implementation
UploadRecivedModel copyWith({
String? fieldname,
String? originalname,
String? encoding,
String? mimetype,
String? destination,
String? filename,
String? path,
String? size,
}) =>
UploadRecivedModel(
fieldname: fieldname ?? this.fieldname,
originalname: originalname ?? this.originalname,
encoding: encoding ?? this.encoding,
mimetype: mimetype ?? this.mimetype,
destination: destination ?? this.destination,
filename: filename ?? this.filename,
path: path ?? this.path,
size: size ?? this.size,
);