copyWith method
Implementation
ContentChildTypeExpandable copyWith(
{String? all,
String? attachment,
String? comment,
String? page,
String? whiteboard}) {
return ContentChildTypeExpandable(
all: all ?? this.all,
attachment: attachment ?? this.attachment,
comment: comment ?? this.comment,
page: page ?? this.page,
whiteboard: whiteboard ?? this.whiteboard,
);
}