copyWith method
Implementation
EmailAttachment copyWith({
String? content,
String? filename,
String? type,
String? disposition,
String? contentId,
}) =>
EmailAttachment(
content: content ?? this.content,
filename: filename ?? this.filename,
type: type ?? this.type,
disposition: disposition ?? this.disposition,
contentId: contentId ?? this.contentId,
);