copyWith method

AttachmentUpdateContainer copyWith({
  1. String? id,
  2. String? type,
})

Implementation

AttachmentUpdateContainer copyWith({String? id, String? type}) {
  return AttachmentUpdateContainer(
    id: id ?? this.id,
    type: type ?? this.type,
  );
}