copyWith method
Implementation
@override
PmPacket copyWith({
String? filename,
String? contentType,
Uint8List? data,
}) {
return PmPacket(
filename: filename ?? this.filename,
contentType: contentType ?? this.contentType,
data: data ?? this.data,
);
}